Last active
March 4, 2016 19:04
-
-
Save Doerge/194a01e61194d8021caa to your computer and use it in GitHub Desktop.
flask-zappa test settings
This file contains hidden or 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
{ | |
"development": { | |
"s3_bucket": "my-flask-test-bucket", | |
"settings_file": "development_settings.py", | |
"project_name": "MyFlaskTestProject", | |
"exclude": ["*.git*", "./static/*", "*.DS_Store", "tests/*", "*.zip"] | |
}, | |
"staging": { | |
"s3_bucket": "staging-bucket", | |
"settings_file": "staging_settings.py", | |
"project_name": "MyFlaskTestProject", | |
"exclude": ["*.git*", "./static/*", "*.DS_Store", "tests/*", "*.zip"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment