Platform.sh User Documentation

Manage Platform.sh environments

Upsun Beta

Access our newest offering - Upsun!

Get your free trial by clicking the link below.

Get your Upsun free trial

A Platform.sh environment contains one instance of an app (or group of apps) with all the services needed for it to run.

Each project can include multiple environments, often divided into environment types. If you have a live site, you have at least a production environment. You can think of other environments as copies of your live site where you can run tests without worrying about damaging anything in production. Once you have completed your tests, you can merge your changes so that they’re instantly and seamlessly deployed to production.

You can create environments for development, testing, staging, review, and so on. To organize your environments, you can create hierarchical relationships.

Create environments Anchor to this heading

You can create new environments in one of two ways:

When you branch an environment, you might want to create exact replicas of it. In this case, each new environment inherits all of the data and services from its parent environment. This includes databases, network storage, queues, and routing configurations.

You can create Platform.sh environments on demand. Each environment is tied to a Git branch. If you use a source integration, you can even have environments created automatically for your pull requests and branches.

You can also have branches that aren’t tied to a running instance of your application. These are called inactive environments.

Default environment Anchor to this heading

Your default environment comes from your default branch and is a production environment. Your project must have a default environment, but you can name it as you want.

If you subscribed to a production plan, this environment is your live site. You might want to give it a custom domain name.

Environment status Anchor to this heading

Your environments can have one of two statuses:

  • Active: A deployed environment with services and data.

  • Inactive: An environment that isn’t deployed and has no services or data, only code.

You can see the status of your environments in the Console or the CLI.

When you open your project, inactive environments appear lighter in the environment list. You also can’t select them from the Environment dropdown menu.

To check the status of an environment, you can also open it and view its information panel.

To check the status of all your environments, from your project directory run the platform environments command.

You can change an environment’s status at any time.

Organize your environments Anchor to this heading

Hierarchy Anchor to this heading

Environment hierarchy

In Platform.sh, your environments are organized in a hierarchy featuring parent and child environments.

When you branch an environment, the parent of the new environment is the environment it was created from. You can change the environment’s parent after it’s been created.

When you push a branch through Git or a source integration, the parent environment of the new environment is your default environment. Alternatively, you can change the environment’s parent after it’s been created.

Each child environment can sync code and/or data down from its parent and merge code up to its parent. You can use child environments for development, staging, and testing.

Workflows Anchor to this heading

Since you can customize your environment hierarchy, you can create your own workflows. You can decide which structure best fits your needs.

Possible approaches Anchor to this heading

You may want to take one of the following approaches when creating your workflows:

  • Agile: A child environment per sprint. Each story in the sprint can have its own environment as a child of the sprint environment.

  • Developer-centric: One QA environment and a few preview environments (per developer, per task, or similar).

  • Testing: An operational test environment, a user test environment, and a few unit test environments.

  • Hotfix: One environment for each bug, security issue, or hotfix that needs deployment.

Example workflow Anchor to this heading

Example Agile workflow:

  1. An admin branches the Live (default) environment to create a Sprint environment.

  2. The admin gives each developer permission to branch the Sprint environment to create new feature environments.

    Agile branches with Live as the top parent, Sprint 1 as a child, and Feature 1 and Feature 2 as children of Sprint

  3. Feature 1 is developed and work is reviewed by accessing the deployed Feature 1 environment.

  4. When the review is done, Feature 1 is merged into the Sprint environment.

    Feature 1 is merged into the Sprint 1 environment

  5. The remaining features sync with the Sprint environment. This ensures their working environment is up-to-date with the latest code.

    Features from the Sprint 1 environment are synced with the Feature 2 environment

  6. When the sprint is complete and all features merged into the Sprint environment, the admin makes a backup of the live site.

  7. The admin merges the Sprint environment into the Live environment.

    Features from the Sprint 1 environment are merged into the Live environment

  8. The admin syncs the next sprint’s environment with the Live environment to repeat and continue the development process.

    Features from the Live environment are synced with the Sprint 2 environment

Naming conventions Anchor to this heading

You can organize and work with your preview environments in many different ways. It can help to introduce a convention for how you name and structure your environments.

For each environment, choose a name that represents what the environment is for. If you use Agile, for example, you can adopt a naming convention similar to the following:

Live
  Sprint1
    Feature1
    Feature2
    Feature3
  Sprint2
    Feature1
    Feature2

If you prefer splitting your environments per developer and having a specific environment for each task or ticket, you can adopt a naming convention similar to the following:

Staging
  Developer1
    Ticket-526
    Ticket-593
  Developer2
    Ticket-395

Paused environments Anchor to this heading

Preview environments are often used for a limited time and then abandoned. To prevent unnecessary consumption of resources, Platform.sh automatically pauses preview environments (of both development and staging types) that haven’t been redeployed in 14 days.

You can also pause an environment manually at any time.

Pause an environment Anchor to this heading

To pause an environment, follow these steps:

Run the following command:

platform environment:pause --project PROJECT_ID --environment ENVIRONMENT_NAME
  1. Navigate to your project and click Settings.
  2. Under Environments, select the environment you want to pause.
  3. In the Status tab, click Pause environment.

Resume a paused environment Anchor to this heading

Pushing new code or redeploying a paused environment automatically resumes it. You can also resume it manually at any time.

Run the following command:

platform environment:resume --project PROJECT_ID --environment ENVIRONMENT_NAME
  1. Navigate to the paused environment.
  2. In the Activity tab, click Resume environment.
  3. In the Resume environment window, click Resume.

The environment is redeployed and becomes available for use again.

Push options Anchor to this heading

Git provides push options to pass a string to the server (see the official Git documentation).

Platform.sh supports some of these push options, which allows you to push changes to your environment and trigger the following actions at the same time:

Action Command
Activate the environment git push platform -o "environment.status=active"
Set a title for the environment git push platform -o "environment.title=<ENVIRONMENT_TITLE>"
Set the parent environment git push platform -o "environment.parent=<PARENT_ENVIRONMENT_NAME>"
Clone the data from the parent environment git push platform -o "environment.clone_parent_on_create=True"
Disable the cloning of the data from the parent environment git push platform -o "environment.clone_parent_on_create=False"
Set the environment type (development, staging, or production) git push platform -o "environment.type=<ENVIRONMENT_TYPE>"

If your remote location isn’t named platform, make sure you adjust the commands accordingly.

The following example shows how, through a single push, you can activate your environment, set a title for it, set a parent environment for it, and clone the data from its parent into it.

Terminal
git push platform -o "environment.status=active" -o "environment.title=my-environment-title" -o "environment.parent=my-parent-environment" -o "environment.clone_parent_on_create=True"

Is this page helpful?