Scalingo JSON Manifest

The manifest is an optional file named scalingo.json you can add at the root of your repository to configure review apps and one-click deploy button. Its intent is to configure how an application should be created.

If your application code is in a subdirectory configured through the PROJECT_DIR environment variable, Scalingo detects the JSON manifest under this subdirectory. If there is no JSON manifest in the PROJECT_DIR folder, Scalingo tries to get the scalingo.json in every folder up to the root of your repository.

Configuration of the Environment

The scalingo.json manifest can be used to customize the environment of the application.

Review Apps

Variables described in the manifest are created when the review app is created, if one of those variables is present in the parent app environment, it will be replaced following the manifest rule.

One-Click Deployment

The manifest describes the default values of the environment variables, the user can still customize them before triggering the deployment.

Example

{
  "env": {
    "ENVIRONMENT": {
      "value": "staging"
    },
    "ADMIN_URL": {
      "generator": "url",
      "template": "%URL%/admin"
    },
    "SECRET_KEY": {
      "generator": "secret"
    }
  }
}

Configuration of Addons

Addons can also be declared in the JSON manifest and they’ll be provisioned before deploying a review app or starting a one-click deploy.

Review Apps

By default, addons are copied from the parent app. If you want to change the plan the review app will be using, or to avoid using some of them which only make sense in production, you can specify the list of addons in the manifest.

One-Click Deployments

Addons declared in the manifest will be provisioned before starting the deployment of the application.

Example

The options attribute is optional, currently only the version parameter is allowed in it.

{
  "addons": [
    {
      "plan": "postgresql:postgresql-starter-512",
      "options": {
        "version": "11"
      }
    }, {
      "plan": "redis:redis-starter-128",
    }
  ]
}

Deployment Hooks

The JSON manifest also lets you declare scripts which will be executed as postdeploy hook.

  • first-deploy: Executed after the first deployment of a review app or one-click app. It will be executed as many times as necessary until a first deployment is considered a “success” by the platform.
  • postdeploy [Deprecated]: Executed after each deployment of a review app except the first one if first-deploy is defined. This feature has been deprecated in favor of postdeploy script in the Procfile file.

Example

{
  "scripts": {
    "first-deploy": "bundle exec rake db:migrate db:seed",
    "postdeploy": "bundle exec rake db:migrate"
  }
}

Reference Documentation

You can find the comprehensive documentation about the structure of the Scalingo JSON Manifest in our developers documentation


Suggest edits

Scalingo JSON Manifest

©2024 Scalingo