示例#1
0
文件: wsgi.py 项目: Aavnik/WeatherApp
"""
WSGI config for weatherapp 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/3.1/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application
from dj_static import Cling

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'weatherapp.settings')

#application = get_wsgi_application()
application = Cling(get_wsgi_application())
示例#2
0
"""
WSGI config for eroicaproject 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/3.0/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application
from dj_static import Cling

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'eroicaproject.settings')

#application = get_wsgi_application()
application = Cling(
    get_wsgi_application())  #para poder utilizar los static en producccion
示例#3
0
"""
WSGI config for mysitehomeadvanced 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/3.1/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application
from dj_static import Cling, MediaCling

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysitehomeadvanced.settings')

application = get_wsgi_application()
application = Cling(MediaCling(get_wsgi_application()))
示例#4
0
# 帮助Djang'o提供它创建的文件,即web server gateway interface(web服务器网关接口)
"""
WSGI config for Django 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.1/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application
from dj_static import Cling  # 导入静态文件的Cling


os.environ.setdefault("DJANGO_SETTINGS_MODULE", 'Django.settings')
application = Cling(get_wsgi_application())  # 使用Cling来启动程序

示例#5
0
"""
WSGI config for config 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.1/howto/deployment/wsgi/
"""

import os

from django.conf import settings
from django.core.wsgi import get_wsgi_application

from dj_static import Cling

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')

application = get_wsgi_application(
) if settings.ENV == 'production' else Cling(get_wsgi_application())
示例#6
0
This module contains the WSGI application used by Django's development server
and any production WSGI deployments. It should expose a module-level variable
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
this application via the ``WSGI_APPLICATION`` setting.

Usually you will have the standard Django WSGI application here, but it also
might make sense to replace the whole Django WSGI application with a custom one
that later delegates to the Django one. For example, you could introduce WSGI
middleware here, or combine a Django application with an application of another
framework.

"""
import os

# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
# if running multiple sites in the same mod_wsgi process. To fix this, use
# mod_wsgi daemon mode with each site in its own daemon process, or use
# os.environ["DJANGO_SETTINGS_MODULE"] = "xbgw_dashboard.settings"
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "xbgw_dashboard.settings")

# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

# Apply WSGI middleware here.
from dj_static import Cling
application = Cling(application)
示例#7
0
"""
WSGI config for UranoApi 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.2/howto/deployment/wsgi/
"""

import os
from static_ranges import Ranges
from django.core.wsgi import get_wsgi_application
from dj_static import Cling, MediaCling

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'UranoApi.settings')

application = Ranges(Cling(MediaCling(get_wsgi_application())))
示例#8
0
"""
WSGI config for AllForOne_Back 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/3.0/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application
from dj_static import Cling  # For Heroku

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'AllForOne_Back.settings')

application = get_wsgi_application()

application = Cling(get_wsgi_application())  # For Heroku