forked from DGNum/gestioCOF
5aff771d9c
- `cof` is renamed `gestioCOF` - `gestioncof` become `cof` (yes it looks pretty stupid but it is not) - `bds` is created
7 lines
207 B
Python
7 lines
207 B
Python
import os
|
|
from channels.asgi import get_channel_layer
|
|
|
|
if "DJANGO_SETTINGS_MODULE" not in os.environ:
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cof.settings")
|
|
|
|
channel_layer = get_channel_layer()
|