11 lines
144 B
Python
11 lines
144 B
Python
|
|
from .base import *
|
||
|
|
|
||
|
|
|
||
|
|
DEBUG = True
|
||
|
|
|
||
|
|
CORS_ALLOWED_ORIGINS = CORS_ALLOWED_ORIGINS or [
|
||
|
|
"http://localhost:3000",
|
||
|
|
"ws://localhost:3000",
|
||
|
|
]
|
||
|
|
|