Skip to content

Instantly share code, notes, and snippets.

@Doerge
Last active March 4, 2016 19:04
Show Gist options
  • Save Doerge/194a01e61194d8021caa to your computer and use it in GitHub Desktop.
Save Doerge/194a01e61194d8021caa to your computer and use it in GitHub Desktop.
flask-zappa test settings
{
"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