Platform.sh User Documentation

Philosophy

Sign up for Upsun

Get your free trial by clicking the link below.

Get your Upsun free trial

Platform.sh aims at reducing configuration and making developers more productive. It abstracts your project infrastructure and manages it for you, so you never have to configure services like a web server, a MySQL database, or a Redis cache from scratch again.

Platform.sh is built on one main idea โ€” your server infrastructure is part of your app, so it should be version controlled along with your app.

Every branch you push to your Git repository can come with bug fixes, new features, and infrastructure changes. You can then test everything as an independent deployment, including your application code and all of your services with a copy of their data (database entries, search index, user files, etc.).

This allows you to preview exactly what your site would look like if you merged your changes to production.

The basics Anchor to this heading

On Platform.sh, a project is linked to a Git repository and is composed of one or more apps. An app is a directory in your Git repository with a specific Platform.sh configuration and dedicated HTTP endpoints (via the .platform.app.yaml file).

Projects are deployed in environments. An environment is a standalone copy of your live app which can be used for testing, Q&A, implementing new features, fixing bugs, and so on.

Every project you deploy on Platform.sh is built as a virtual cluster containing a series of containers. The main branch of your Git repository is always deployed as a production cluster. Any other branch can be deployed as a staging or development cluster.

There are three types of containers within your cluster, all configured by files stored alongside your code:

  • The router, configured in .platform/routes.yaml, is a single Nginx process responsible for mapping incoming requests to an app container, and for optionally providing HTTP caching.

  • One or more apps, configured via .platform.app.yaml files, holding the code of your project.

  • Some optional services, configured in .platform/services.yaml, like MySQL/MariaDB, Elasticsearch, Redis, or RabbitMQ. They come as optimized pre-built images.

The workflow Anchor to this heading

Every time you deploy a branch to Platform.sh, the code is built and then deployed on a new cluster.

The build process looks through the configuration files in your repository and assembles the necessary containers.

The deploy process makes those containers live, replacing the previous versions, with no service downtime.

Depending on your needs, you can also set up a post-deploy hook to run after your app is deployed and your application container starts accepting traffic. Adding a post-deploy hook can be useful to run updates that don’t require exclusive database access.

Note that if you’re using Gatsby to pull from a backend container on the same environment, you need a post-deploy hook to successfully build and deploy your app.

How your app is built Anchor to this heading

During the build step, dependencies specified in .platform.app.yaml are installed on application containers.

You can also customize the build step by providing a build hook composed of one or more shell commands that help create your production codebase. That could be compiling TypeScript files, running some scripts, rearranging files on disk, or whatever else you want.

Note that at this point all you have access to is the filesystem; there are no services or other databases available. Your live website is unaffected.

Once the build step is completed, the filesystem is frozen and a read-only container image is created. That filesystem is the final build artifact.

How your app is deployed Anchor to this heading

Before starting the deployment of your app, Platform.sh pauses all incoming requests and holds them to avoid downtime.

Then, the current containers are stopped and the new ones are started. Platform.sh then opens networking connections between the various containers, as specified in the configuration files. The connection information for each service is available from the PLATFORM_RELATIONSHIPS environment variable.

Similar to the build step, you can define a deploy hook to prepare your app. Your app has complete access to all services, but the filesystem where your code lives is now read-only.

Finally, Platform.sh opens the floodgates and lets incoming requests through your newly deployed app.

Add a post-deploy hook Anchor to this heading

You can add a post-deploy hook to be run after the build and deploy steps.

Similar to the deploy hook, the post-deploy hook only runs once your application container accepts requests. So you can use it to run updates such as content imports or cache warmups that can be executed simultaneously with normal traffic.

During a redeploy, the post-deploy hook is the only hook that is run.

Get support Anchor to this heading

If you’re facing an issue with Platform.sh, open a support ticket.

What’s next? Anchor to this heading

To get a feeling of what working with Platform.sh entails, see the Get Started framework guides.

Is this page helpful?