Skip to content

Instantly share code, notes, and snippets.

@keeyanajones
Created April 6, 2019 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keeyanajones/109b2a8758983922a5fcd5df05f27548 to your computer and use it in GitHub Desktop.
Save keeyanajones/109b2a8758983922a5fcd5df05f27548 to your computer and use it in GitHub Desktop.
example configuration json file
{
"development": {
"config_id": "development",
"app_name": "my app",
"app_desc": "my app desc",
"node_port": 3000,
"json_indentation": 4,
"database": "my-app-db-dev",
"host": "localhost"
},
"testing": {
"config_id": "testing",
"database": "my-app-db-test",
"host": "localhost"
},
"staging": {
"config_id": "staging",
"node_port": 8080,
"database": "my-app-db-stag",
"host": "localhost"
},
"production": {
"config_id": "production",
"node_port": 8080,
"database": "my-app-db-prod",
"host": "localhost"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment