Skip to main content

Deploying your code to Apify

In this course learn how to take an existing project of yours and deploy it to the Apify platform as an Actor.


This section will discuss how to use your newfound knowledge of the Apify platform and Actors from the Getting started section to deploy your existing project's code to the Apify platform as an Actor. Any program running in a Docker container can become an Apify Actor.

The deployment workflow

Apify provides detailed guidance on how to deploy Node.js and Python programs as Actors, but apart from that you're not limited in what programming language you choose for your scraper.

Supported languages

Here are a few examples of Actors in other languages:

The "actorification" workflow

Follow these four main steps to turn a piece of code into an Actor:

  1. Handle accepting inputs and writing outputs.
  2. Create an input schema (optional).
  3. Add a Dockerfile.
  4. Deploy to the Apify platform!

Our example project

For this section, we'll be turning this example project into an Actor:

// index.js
const addAllNumbers = (...nums) => nums.reduce((total, curr) => total + curr, 0);

console.log(addAllNumbers(1, 2, 3, 4)); // -> 10

For all lessons in this section, we'll have examples for both Node.js and Python so that you can follow along in either language.

Next up

Next lesson, we'll be learning how to accept input into our Actor as well as deliver output.