From 124a51ba49fc5b34797e2baebe63d2202898653a Mon Sep 17 00:00:00 2001 From: Param Singh Date: Thu, 20 Jun 2019 11:44:55 +0000 Subject: [PATCH] Setup production after the major merge --- Dockerfile.prod | 2 +- docker/prod/uwsgi/uwsgi.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.prod b/Dockerfile.prod index 5752c9d..3f30e65 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -43,7 +43,7 @@ RUN npm install -g less less-plugin-clean-css # Note: this will not persist because /code/listenbrainz is a volume # After bringing up a container, run this again inside the container # to compile the less files -RUN lessc --clean-css webserver/static/css/main.less > webserver/static/css/main.css +RUN lessc --clean-css messybrainz/webserver/static/css/main.less > messybrainz/webserver/static/css/main.css # Consul Template service is already set up with the base image. # Just need to copy the configuration. diff --git a/docker/prod/uwsgi/uwsgi.ini b/docker/prod/uwsgi/uwsgi.ini index 3804a99..bc09f5a 100644 --- a/docker/prod/uwsgi/uwsgi.ini +++ b/docker/prod/uwsgi/uwsgi.ini @@ -1,7 +1,7 @@ [uwsgi] master = true socket = 0.0.0.0:3031 -module = webserver +module = messybrainz.webserver callable = application chdir = /code/messybrainz enable-threads = true