mirror of
https://github.com/pinry/pinry.git
synced 2026-01-14 19:22:05 +01:00
7 lines
172 B
Python
7 lines
172 B
Python
import os
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinry.settings.docker")
|
|
application = get_wsgi_application()
|