source: firmaeventos/FirmaEventos/wsgi.py @ bf47591

Last change on this file since bf47591 was bf47591, checked in by Leonel Hernandez <leonelphm@…>, 7 years ago

Inicializando Proyecto

  • Property mode set to 100644
File size: 402 bytes
Line 
1"""
2WSGI config for FirmaEventos project.
3
4It exposes the WSGI callable as a module-level variable named ``application``.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/
8"""
9
10import os
11
12from django.core.wsgi import get_wsgi_application
13
14os.environ.setdefault("DJANGO_SETTINGS_MODULE", "FirmaEventos.settings")
15
16application = get_wsgi_application()
Note: See TracBrowser for help on using the repository browser.