mirror of https://github.com/snachodog/mybuddy.git
Add a DEBUG environment option to Heroku settings.
This commit is contained in:
parent
37ae4056ab
commit
3ae40027f4
|
@ -5,7 +5,7 @@ import dj_database_url
|
|||
from .base import * # noqa: F401,F403
|
||||
|
||||
|
||||
DEBUG = False
|
||||
DEBUG = os.environ.get('DEBUG', False)
|
||||
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
|
|
Loading…
Reference in New Issue