index.community/backend/settings/dev.py

13 lines
157 B
Python
Raw Normal View History

2018-08-26 22:31:53 +00:00
from .base import *
DEBUG = True
ALLOWED_HOSTS += ['localhost']
2018-08-27 21:31:27 +00:00
CORS_ORIGIN_WHITELIST = [
'localhost:3000',
'localhost:8000',
'127.0.0.1',
]