mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 04:50:16 +02:00
* Implement Discord OAuth - extend group caching to Discord - use bot token to manipulate api - migrate to official API Addresses #419 * Remove virtualenv wrapper * Discord OAuth integration playtest corrections Closes #419
22 lines
578 B
Python
22 lines
578 B
Python
"""
|
|
WSGI config for alliance_auth project.
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/
|
|
"""
|
|
|
|
import os
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "alliance_auth.settings")
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
# virtualenv wrapper
|
|
#activate_env=os.path.join(os.path.dirname(os.path.abspath(__file__)), 'env/bin/activate_this.py')
|
|
#execfile(activate_env, dict(__file__=activate_env))
|
|
|
|
|
|
application = get_wsgi_application()
|