Project Files
test-docs / config.json
{
"app": {
"name": "MyProject",
"version": "2.0.0",
"environment": "production",
"port": 3000,
"host": "0.0.0.0"
},
"database": {
"host": "db.myproject.internal",
"port": 5432,
"name": "myproject_prod",
"user": "app_user",
"pool_size": 20,
"ssl": true
},
"redis": {
"host": "cache.myproject.internal",
"port": 6379,
"db": 0
},
"logging": {
"level": "info",
"format": "json",
"output": [
"stdout",
"file"
],
"file_path": "/var/log/myproject/app.log"
},
"features": {
"enable_notifications": true,
"enable_analytics": true,
"enable_beta_features": false,
"max_upload_size_mb": 50
}
}