10 lines
197 B
Python
10 lines
197 B
Python
from __future__ import absolute_import
|
|
|
|
from . import * # NOQA
|
|
|
|
DEBUG = False
|
|
|
|
# Update this accordingly;
|
|
# https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts
|
|
ALLOWED_HOSTS = ['*']
|