diff --git a/caravel/config.py b/caravel/config.py index 1def66bf43286..93930cc1b2847 100644 --- a/caravel/config.py +++ b/caravel/config.py @@ -41,7 +41,7 @@ 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 diff --git a/docs/installation.rst b/docs/installation.rst index fcfc63c53356d..57cdc467876a0 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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