From cad6d1f99dcb5a2d23d04cc5a039c5fa1bb4639a Mon Sep 17 00:00:00 2001 From: "Areli, Fuss (af732p)" Date: Thu, 24 May 2018 12:54:59 +0300 Subject: Replace uWsgi Replace uWsgi with gunicorn And remove python precompiled files Change-Id: Icb8b592f371badadeb9d936e2a0edd929baacea9 Issue-ID: VVP-60 Signed-off-by: Areli, Fuss (af732p) --- web/__init__.pyc | Bin 135 -> 0 bytes web/__pycache__/__init__.cpython-36.pyc | Bin 131 -> 0 bytes web/__pycache__/urls.cpython-36.pyc | Bin 1060 -> 0 bytes web/__pycache__/wsgi.cpython-36.pyc | Bin 498 -> 0 bytes web/settings/__pycache__/__init__.cpython-36.pyc | Bin 5226 -> 0 bytes web/urls.py | 4 ++++ web/urls.pyc | Bin 1155 -> 0 bytes web/wsgi.pyc | Bin 583 -> 0 bytes 8 files changed, 4 insertions(+) delete mode 100644 web/__init__.pyc delete mode 100644 web/__pycache__/__init__.cpython-36.pyc delete mode 100644 web/__pycache__/urls.cpython-36.pyc delete mode 100644 web/__pycache__/wsgi.cpython-36.pyc delete mode 100644 web/settings/__pycache__/__init__.cpython-36.pyc delete mode 100755 web/urls.pyc delete mode 100755 web/wsgi.pyc (limited to 'web') diff --git a/web/__init__.pyc b/web/__init__.pyc deleted file mode 100644 index a2989d2..0000000 Binary files a/web/__init__.pyc and /dev/null differ diff --git a/web/__pycache__/__init__.cpython-36.pyc b/web/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 987461b..0000000 Binary files a/web/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/web/__pycache__/urls.cpython-36.pyc b/web/__pycache__/urls.cpython-36.pyc deleted file mode 100644 index 3b71cec..0000000 Binary files a/web/__pycache__/urls.cpython-36.pyc and /dev/null differ diff --git a/web/__pycache__/wsgi.cpython-36.pyc b/web/__pycache__/wsgi.cpython-36.pyc deleted file mode 100644 index e491c09..0000000 Binary files a/web/__pycache__/wsgi.cpython-36.pyc and /dev/null differ diff --git a/web/settings/__pycache__/__init__.cpython-36.pyc b/web/settings/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 5b2485b..0000000 Binary files a/web/settings/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/web/urls.py b/web/urls.py index 7881a68..f4b03b7 100644 --- a/web/urls.py +++ b/web/urls.py @@ -54,9 +54,13 @@ Including another URLconf from django.conf.urls import include, url from django.contrib import admin +from django.contrib.staticfiles.urls import staticfiles_urlpatterns + urlpatterns = [ url(r'^admin/', include(admin.site.urls)), url(r'^ice-ci/v1/', include('iceci.urls')), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), ] + +urlpatterns += staticfiles_urlpatterns() diff --git a/web/urls.pyc b/web/urls.pyc deleted file mode 100755 index 8d4ee0b..0000000 Binary files a/web/urls.pyc and /dev/null differ diff --git a/web/wsgi.pyc b/web/wsgi.pyc deleted file mode 100755 index d7b2af2..0000000 Binary files a/web/wsgi.pyc and /dev/null differ -- cgit 1.2.3-korg