9 lines
124 B
Python
9 lines
124 B
Python
|
from .settings import * # pylint: disable=unused-wildcard-import
|
||
|
|
||
|
|
||
|
DEBUG = True
|
||
|
|
||
|
SECRET_KEY = 'dev'
|
||
|
|
||
|
ALLOWED_HOSTS = ['*']
|