index.community/backend/api/backend/settings/development.py

13 lines
156 B
Python
Raw Normal View History

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