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