aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorAreli, Fuss (af732p) <af732p@att.com>2018-05-24 12:54:59 +0300
committerAreli, Fuss (af732p) <af732p@att.com>2018-05-24 12:55:49 +0300
commitcad6d1f99dcb5a2d23d04cc5a039c5fa1bb4639a (patch)
tree38420735302ce2516715efe45f274af4ebe7d5fd /web
parent1bba336e9328bdba726d9674ecd3e638248a1294 (diff)
Replace uWsgi
Replace uWsgi with gunicorn And remove python precompiled files Change-Id: Icb8b592f371badadeb9d936e2a0edd929baacea9 Issue-ID: VVP-60 Signed-off-by: Areli, Fuss (af732p) <af732p@att.com>
Diffstat (limited to 'web')
-rw-r--r--web/__init__.pycbin135 -> 0 bytes
-rw-r--r--web/__pycache__/__init__.cpython-36.pycbin131 -> 0 bytes
-rw-r--r--web/__pycache__/urls.cpython-36.pycbin1060 -> 0 bytes
-rw-r--r--web/__pycache__/wsgi.cpython-36.pycbin498 -> 0 bytes
-rw-r--r--web/settings/__pycache__/__init__.cpython-36.pycbin5226 -> 0 bytes
-rw-r--r--web/urls.py4
-rwxr-xr-xweb/urls.pycbin1155 -> 0 bytes
-rwxr-xr-xweb/wsgi.pycbin583 -> 0 bytes
8 files changed, 4 insertions, 0 deletions
diff --git a/web/__init__.pyc b/web/__init__.pyc
deleted file mode 100644
index a2989d2..0000000
--- a/web/__init__.pyc
+++ /dev/null
Binary files differ
diff --git a/web/__pycache__/__init__.cpython-36.pyc b/web/__pycache__/__init__.cpython-36.pyc
deleted file mode 100644
index 987461b..0000000
--- a/web/__pycache__/__init__.cpython-36.pyc
+++ /dev/null
Binary files differ
diff --git a/web/__pycache__/urls.cpython-36.pyc b/web/__pycache__/urls.cpython-36.pyc
deleted file mode 100644
index 3b71cec..0000000
--- a/web/__pycache__/urls.cpython-36.pyc
+++ /dev/null
Binary files differ
diff --git a/web/__pycache__/wsgi.cpython-36.pyc b/web/__pycache__/wsgi.cpython-36.pyc
deleted file mode 100644
index e491c09..0000000
--- a/web/__pycache__/wsgi.cpython-36.pyc
+++ /dev/null
Binary files 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
--- a/web/settings/__pycache__/__init__.cpython-36.pyc
+++ /dev/null
Binary files 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
--- a/web/urls.pyc
+++ /dev/null
Binary files differ
diff --git a/web/wsgi.pyc b/web/wsgi.pyc
deleted file mode 100755
index d7b2af2..0000000
--- a/web/wsgi.pyc
+++ /dev/null
Binary files differ