view sat_website/wsgi.py @ 158:19d1f4d465fc

quick fix for news.html, page was using old URL
author Goffi <goffi@goffi.org>
date Sat, 31 Mar 2018 11:39:41 +0200
parents b1c16cd53b62
children
line wrap: on
line source

"""
WSGI config for sat_website 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.11/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

application = get_wsgi_application()