Making prod web server run by default

This commit is contained in:
Maxime Beauchemin 2016-04-08 22:09:01 -07:00
parent b47ca785c7
commit 25831f0033
2 changed files with 1 additions and 4 deletions

View File

@ -41,7 +41,7 @@ SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/caravel.db'
CSRF_ENABLED = True
# Whether to run the web server in debug mode or not
DEBUG = True
DEBUG = False
# Whether to show the stacktrace on 500 error
SHOW_STACKTRACE = True

View File

@ -112,9 +112,6 @@ of the parameters you can copy / paste in that configuration module: ::
# Flask-WTF flag for CSRF
CSRF_ENABLED = True
# Whether to run the web server in debug mode or not
DEBUG = True
This file also allows you to define configuration parameters used by
Flask App Builder, the web framework used by Caravel. Please consult
the `Flask App Builder Documentation