Configuration File

Environment Variables

The [env] section allows you to define environment variables that will be available to your application at runtime.

These variables are injected into all the processes of your application.

# Configuration file with an env section
app = 'myapp'

[env]
  APP_DEBUG = 'false'
  DB_HOST = 'my-db-service'

For sensitive data, it is recommended to use Secrets instead of environment variables.

Previous
Build
Next
Deploy