Start Tasks
To get the most out of ephemeral developer environments, it is important to let Gitpod know how to build your project. We can achieve this by defining tasks in the .gitpod.yml configuration file.
Note: In your local developer environment, you likely set up your project only once. If you work in a team, you probably have written instructions on how to get started. With Gitpod, you automate these manual steps so that a new environment can be set up repeatedly by Gitpod.
Tasks are shell scripts that run on top of the Docker image you configure (learn more about custom Docker images).
Execution order
With Gitpod, you have the following three types of tasks:
before: Use this for tasks that need to run beforeinitand beforecommand. For example, customzie the terminal or install global project dependencies.init: Use this for heavy-lifting tasks such as downloading dependencies or compiling source code.command: Use this to start your database or develoment server.
The order in which these tasks execute depends on whether you have Prebuilds configured for your project and which startup scenario applies. Letās look at the details.
Prebuild and New Workspaces
In this startup scenario, you can see how Prebuilds impact the execution order of tasks:

The init task is where you want to do the heavy lifting, things like:
- Download & install dependencies
- Compile your source code
- Run your test suite
- Any other long-running, terminating processes necessary to prepare your project
As displayed in the diagram above, we highly recommend you enable Prebuilds for your project. In that case, Gitpod executes the before and most importantly, init tasks automatically for each new commit to your project.
By the time you start a new workspace, all thatās left to do is execute the before (optional) and command tasks. The latter most often starts a database and/or development server.
Let Gitpod run the time-consuming
inittasks continously behind the scene so you and anyone who opens your project on Gitpod doesnāt have to wait.
Restart a Workspace
When you restart a workspace, Gitpod already executed the init task (see above) either as part of a Prebuild or when you started the workspace for the first time.
As part of a workspace restart, Gitpod executes the before and command tasks:

Start a Snapshot
When you start a snapshot, Gitpod already executed the init task (see above) either as part of a Prebuild or when you or a team member started the snapshotās initial workspace for the first time.
As part of starting a snapshot, Gitpod executes the before and command tasks:

Configure the terminal
You can configure where terminals open using the openMode properties below.
Please note that this information is used if no previous terminals in the layout exist.
Snapshots will first try to reuse existing terminals in the layout, before opening new ones.
tasks:
- name: Static Server
command: python3 -m http.server 8080
- name: DB Server
command: sh ./scripts/start-db.sh
openMode: split-right
openMode
You can configure how the terminal should be opened relative to the previous task.
| openMode | Description |
|---|---|
openMode: tab-after |
Opens in the same tab group right after the previous tab |
openMode: tab-before |
Opens in the same tab group left before the previous tab |
openMode: split-right |
Splits and adds the terminal to the right |
openMode: split-left |
Splits and adds the terminal to the left |
openMode: split-top |
Deprecated. Splits and adds the terminal to the top |
openMode: split-bottom |
Deprecated. Splits and adds the terminal to the bottom |
Example Tasks
The examples below are common use cases you can get inspired by and adjust for your projectās needs.
Note:
beforeandinittasks need to terminate whilecommandcan run indefinitely (i.e. until cancelled with Ctrl + C). This is becausebeforeandinitmay run as part of a prebuild and if these tasks do not terminate, the prebuild will eventually fail with a timeout.
One-line tasks
Each task contains a single npm command. The init task terminates once the dependencies are installed while the command task starts a development server and does not terminate.
tasks:
- name: Dev Server
init: npm install
command: npm run dev
Multi-line tasks in two terminals
To run multiple commands for a given task, you can use the | notation where each line below (make sure you indent correctly) runs in sequence once the previous command terminates.
In this example, Gitpod opens two terminals (as noted by the two -):
- In the first terminal, the
inittask installs dependencies and configures a database. Then, thecommandtask starts the database. - The second terminal only has a
commandtask which starts the dev server. The application code connects to the database that is started in the first terminal (e.g. via localhost:3306).
Note: In case of multiple terminals, there is no guarantee on the order in which tasks execute. The only guarantee you have is that
before,initandcommandexecute in that sequence per terminal.
tasks:
- name: Dependencies & Database
init: |
npm install
npm run configure-database
command: npm run start-database
- name: Dev Server
command: npm run dev
Wait for commands to complete
When working with multiple terminals, you may have a situation where terminal 1 runs build scripts and terminal 2 and 3 require that these scripts complete first. This can be achieved with gp sync-await and gp sync-done.
tasks:
- name: Rails
init: >
bundle install &&
yarn install --check-files &&
rails db:setup &&
gp sync-done bundle # 'bundle' is an arbitrary name I picked
command: rails server
- name: Webpack
init: gp sync-await bundle # wait for the above 'init' to finish
command: bin/webpack-dev-server
- name: Redis
init: gp sync-await bundle
command: redis-server
- name: Sidekiq
init: gp sync-await bundle
command: sidekiq
Wait for a port to be available
Letās say you have a web app dev server that takes a moment to start up to listen on port 3000. Once itās up and running, you want to run end-to-end tests against http://localhost:3000.
You can achieve this with two terminals and the gp await-port CLI command.
tasks:
- name: Dev Server
init: npm install
command: npm run dev
- name: e2e Tests
command: |
gp await-port 3000
npm run test
Missing examples?
Weād love to hear from you if you have specific questions or ideas for additional examples. Please click the following link to open a pre-configured GitHub issue: Ask for a new Start Task example.