Configuration Filesintermediate

Deployment Settings JSON Example

A deployment-ready JSON config with environment variables, regions, and health checks.

Real-world use case: Use this for platform config docs, internal deployment records, and cloud setup examples.
1{
2 "appName": "regimify-api",
3 "environment": "production",
4 "regions": [
5 "bom1",
6 "sin1"
7 ],
8 "healthcheck": {
9 "path": "/healthz",
10 "timeoutSeconds": 5
11 },
12 "env": {
13 "LOG_LEVEL": "info",

Where this shape shows up in production

Cloud config
Internal ops docs
Platform setup

Related examples