-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from ochan1/no_vagrant_conda
Standalone Development (no need to pass around keys) + fabfile Production
- Loading branch information
Showing
10 changed files
with
82 additions
and
111 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
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
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
#!/usr/bin/env python | ||
# Development only! | ||
# If you need to add a key / password, add it inside tbpweb_keys.py in the OCF Production | ||
|
||
# Development Secret Key (ok to share, but NEVER on Production) | ||
SECRET_KEY = 'ayk+97c3^y&-u85=2&g&c5l3$*^y0hr^dunoo3d3c^wn0t)mnq' | ||
|
||
# Other Production Keys | ||
RECAPTCHA_PUBLIC_KEY = None | ||
RECAPTCHA_PRIVATE_KEY = None | ||
|
||
YT_PASSWORD = None | ||
YT_DEVELOPER_KEY = None | ||
|
||
# Production-only variables | ||
PROD_DB_PASSWORD = None | ||
|
||
# Development-only variables | ||
DEV_DB_PASSWORD = None | ||
|
||
EMAIL_HOST_PASSWORD = None |