Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Issue Nekmo#4: Serve demo project
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Nov 15, 2020
1 parent d247d17 commit 584df16
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions demo/django/demo/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
SECRET_KEY = '3c3f-#e&%506f^q1+vh3)*lx230fca9v=nv4&+93)^*r=lwrhi'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = os.environ.get('DEBUG', 'True') == 'True'

ALLOWED_HOSTS = []
ALLOWED_HOSTS = [
'127.0.0.1',
'localhost',
'angular-django.nekmo.org',
]


# Application definition
Expand Down

0 comments on commit 584df16

Please sign in to comment.