Environment Value Configuration Files
On this page
Atlas Device Sync, Atlas Edge Server, Data API, and HTTPS Endpoints are deprecated. Refer to the deprecation page for details.
Note
This page describes a legacy configuration file format. You should
only use this information if you're using the deprecated
realm-cli
.
Any configuration files you pull with App Services CLI or export from the UI use the latest configuration version. For detailed information on the current configuration file format, see App Configuration.
app/ └── environments/ ├── no-environment.json ├── development.json ├── testing.json ├── qa.json └── production.json
Environment Configuration
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. |