mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-21 08:20:24 +00:00
Refactored database and changed "app" to "samples" so name didn't conflict with "AppConfig". Replaced deprecated assignment_tag with simple_tag. Updated unit tests.
15 lines
399 B
Python
15 lines
399 B
Python
"""
|
|
WSGI config for django2_app 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/2.0/howto/deployment/wsgi/
|
|
"""
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_project.settings")
|
|
application = get_wsgi_application()
|
|
|