barbacompta/gestion.wsgi

9 lines
214 B
Python

import os
import sys
sys.path.append(os.path.dirname(__file__))
os.environ['DJANGO_SETTINGS_MODULE'] = 'eo_gestion.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()