mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-11 21:40:17 +02:00
* Refactor settings into importable base. User deployment should use 'from allianceauth.settings.base import *' in their project settings. * Restructure tests folder. Remove DOMAIN setting. Use localhost for services revoked emails. * Add missing python3.4 typing requirement typing is included python3.5+ * Remove legacy setup comments Remove legacy update script
21 lines
612 B
Python
21 lines
612 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
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "allianceauth.settings.base")
|
|
|
|
# virtualenv wrapper, uncomment below to activate
|
|
# 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()
|