Skip to content

Commit

Permalink
Fix Travis testing
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalarico committed Aug 28, 2018
1 parent 13b17d1 commit 3589856
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@


class Config(object):
FLASK_ENV = os.environ['FLASK_ENV']
# If not set fall back to production for safety
FLASK_ENV = os.getenv('FLASK_ENV', 'production')
# Set FLASK_SECRET on your production Environment
SECRET_KEY = os.getenv('FLASK_SECRET', 'Secret')

Expand Down

0 comments on commit 3589856

Please sign in to comment.