mirror of
https://github.com/quantum5/qlinks.git
synced 2025-08-04 00:58:53 -04:00
11 lines
229 B
Python
11 lines
229 B
Python
|
import os
|
||
|
|
||
|
import gevent.monkey
|
||
|
|
||
|
gevent.monkey.patch_all()
|
||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'qlinks.settings.local')
|
||
|
|
||
|
from django.core.wsgi import get_wsgi_application # noqa
|
||
|
|
||
|
application = get_wsgi_application()
|