diff options
author | Areli, Fuss (af732p) <af732p@att.com> | 2018-05-24 12:54:59 +0300 |
---|---|---|
committer | Areli, Fuss (af732p) <af732p@att.com> | 2018-05-24 12:55:49 +0300 |
commit | cad6d1f99dcb5a2d23d04cc5a039c5fa1bb4639a (patch) | |
tree | 38420735302ce2516715efe45f274af4ebe7d5fd /web | |
parent | 1bba336e9328bdba726d9674ecd3e638248a1294 (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__.pyc | bin | 135 -> 0 bytes | |||
-rw-r--r-- | web/__pycache__/__init__.cpython-36.pyc | bin | 131 -> 0 bytes | |||
-rw-r--r-- | web/__pycache__/urls.cpython-36.pyc | bin | 1060 -> 0 bytes | |||
-rw-r--r-- | web/__pycache__/wsgi.cpython-36.pyc | bin | 498 -> 0 bytes | |||
-rw-r--r-- | web/settings/__pycache__/__init__.cpython-36.pyc | bin | 5226 -> 0 bytes | |||
-rw-r--r-- | web/urls.py | 4 | ||||
-rwxr-xr-x | web/urls.pyc | bin | 1155 -> 0 bytes | |||
-rwxr-xr-x | web/wsgi.pyc | bin | 583 -> 0 bytes |
8 files changed, 4 insertions, 0 deletions
diff --git a/web/__init__.pyc b/web/__init__.pyc Binary files differdeleted file mode 100644 index a2989d2..0000000 --- a/web/__init__.pyc +++ /dev/null diff --git a/web/__pycache__/__init__.cpython-36.pyc b/web/__pycache__/__init__.cpython-36.pyc Binary files differdeleted file mode 100644 index 987461b..0000000 --- a/web/__pycache__/__init__.cpython-36.pyc +++ /dev/null diff --git a/web/__pycache__/urls.cpython-36.pyc b/web/__pycache__/urls.cpython-36.pyc Binary files differdeleted file mode 100644 index 3b71cec..0000000 --- a/web/__pycache__/urls.cpython-36.pyc +++ /dev/null diff --git a/web/__pycache__/wsgi.cpython-36.pyc b/web/__pycache__/wsgi.cpython-36.pyc Binary files differdeleted file mode 100644 index e491c09..0000000 --- a/web/__pycache__/wsgi.cpython-36.pyc +++ /dev/null diff --git a/web/settings/__pycache__/__init__.cpython-36.pyc b/web/settings/__pycache__/__init__.cpython-36.pyc Binary files differdeleted file mode 100644 index 5b2485b..0000000 --- a/web/settings/__pycache__/__init__.cpython-36.pyc +++ /dev/null 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 Binary files differdeleted file mode 100755 index 8d4ee0b..0000000 --- a/web/urls.pyc +++ /dev/null diff --git a/web/wsgi.pyc b/web/wsgi.pyc Binary files differdeleted file mode 100755 index d7b2af2..0000000 --- a/web/wsgi.pyc +++ /dev/null |