Skip to content

Commit

Permalink
Enable DEBUG output for time being
Browse files Browse the repository at this point in the history
  • Loading branch information
djanderson committed Nov 10, 2018
1 parent 39113ee commit 2116444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
context: .
dockerfile: Dockerfile-api
environment:
- DEBUG
- DEBUG=true
- DOMAINS
- GUNICORN_LOG_LEVEL
- IPS
Expand Down
2 changes: 1 addition & 1 deletion src/sensor/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
else:
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
SECRET_KEY = environ['SECRET_KEY']
DEBUG = bool(environ['DEBUG'] == "true")
DEBUG = environ['DEBUG'] == "true"
ALLOWED_HOSTS = environ['DOMAINS'].split() + environ['IPS'].split()
POSTGRES_PASSWORD = environ['POSTGRES_PASSWORD']

Expand Down

0 comments on commit 2116444

Please sign in to comment.