mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 18:09:33 +02:00
8 lines
153 B
Python
8 lines
153 B
Python
import django
|
|
import os
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.production")
|
|
|
|
django.setup()
|
|
|
|
from .routing import application
|