Esempio n. 1
0
import os

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

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

application = Cling(get_wsgi_application())
Esempio n. 2
0
"""
WSGI config for weeklycircular 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.6/howto/deployment/wsgi/
"""

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

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

application = Cling(get_wsgi_application()) # pylint: disable=C0103
Esempio n. 3
0
"""
WSGI config for statdev project.
It exposes the WSGI callable as a module-level variable named ``application``.
"""
import confy
from django.core.wsgi import get_wsgi_application
from dj_static import Cling, MediaCling
import os

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
confy.read_environment_file(BASE_DIR + "/.env")
os.environ.setdefault("BASE_DIR", BASE_DIR)

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "statdev.settings")
#application = get_wsgi_application()
application = Cling(MediaCling(get_wsgi_application()))
Esempio n. 4
0
"""
WSGI config for swiftwind_heroku 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.10/howto/deployment/wsgi/
"""

import os

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

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

application = get_wsgi_application()
application = Cling(application)
Esempio n. 5
0
"""
WSGI config for VODS 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 static_ranges import Ranges
from dj_static import Cling, MediaCling

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

#application = get_wsgi_application()
application = Ranges(Cling(MediaCling(get_wsgi_application())))
import os

from django.core.wsgi import get_wsgi_application
from dj_static import Cling
from uvicorn.middleware.wsgi import WSGIMiddleware
print(f"RUNNING: __name__: {__name__}")

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

application = WSGIMiddleware(
    Cling(get_wsgi_application()), workers=10
)
Esempio n. 7
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
Esempio n. 8
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来启动程序

Esempio n. 9
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())
Esempio n. 10
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