calebasse / calebasse.wsgi @ 066f587e
| 1 |
import os |
|---|---|
| 2 |
import calebasse.settings |
| 3 |
|
| 4 |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", calebasse.settings)
|
| 5 |
|
| 6 |
# This application object is used by the development server |
| 7 |
# as well as any WSGI server configured to use this file. |
| 8 |
from django.core.wsgi import get_wsgi_application |
| 9 |
application = get_wsgi_application() |