Skip to content

Commit

Permalink
Readded secrets-example.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Khan committed Feb 16, 2018
1 parent 7c3790e commit 59ca93c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions config/secrets-example..json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"google_maps": {
"_comment": "Personal API key for google maps API servce",
"api_key": ""

},

"mongodb_dev": {
"_comment": "Database URL path for dev",
"db_url": "mongodb://localhost/app_db"
},

"mongodb_test": {
"_comment": "Database URL path for testing",
"db_url": "mongodb://localhost/app_db_test"
},

"mongodb_prod": {
"_comment": "Database URL path for prod",
"db_url": ""
},

"jwt": {
"_comment": "Private key with passphrase object to be used for generating tokens",
"key": "passphrase"
},

"other_secret_type": {
"_comment": "Any API keys or other password-type strings can be stored like this.",
"specific_secret_component":"component",
"second_secret_component": "component"
}
}

0 comments on commit 59ca93c

Please sign in to comment.