mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 16:19:17 +02:00
10 lines
213 B
Python
10 lines
213 B
Python
import os
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.production")
|
|
os.environ.setdefault("ASGI_THREADS", "5")
|
|
|
|
import django # noqa
|
|
|
|
django.setup()
|
|
|
|
from .routing import application # noqa
|