-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sameer Khan
committed
Feb 16, 2018
1 parent
7c3790e
commit 59ca93c
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |