Docs Menu

Docs HomeAtlas App Services

Environment Value Configuration Files

On this page

  • Environment Configuration
app/
└── environments/
├── no-environment.json
├── development.json
├── testing.json
├── qa.json
└── production.json

You can define variable values for each environment in a .json file within the /environments directory that uses the environment name as its file name.

Atlas App Services supports the following environments:

  • ""

  • "development"

  • "testing"

  • "qa"

  • "production"

environments/<environment name>.json
{
"values": {
"<Value Name>": <Value>
}
}
Field
Description
values
object
An object where each property maps the name of an environment value name to its value in the current environment.
← MongoDB Data Source Configuration Files