Fixed static files for admin

This commit is contained in:
Claudio Maggioni (maggicl) 2019-04-28 16:04:26 +02:00
parent 8e9d185293
commit 937783b108
3 changed files with 9 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
/static/
!/static/.gitkeep
### OSX ###
.DS_Store
.AppleDouble

View File

@ -40,6 +40,8 @@ COPY . /home/app/code/
RUN chown -R app: /home/app
RUN python3 /home/app/code/manage.py collectstatic
EXPOSE 8000
CMD ["/usr/sbin/uwsgi", "--ini", "/home/app/code/uwsgi.ini", "--plugin", "python3"]
USER app

View File

@ -37,6 +37,8 @@ LOGOUT_REDIRECT_URL = "/"
ITEMS_PER_PAGE = 30
STATIC_ROOT = "static/"
# Application definition
INSTALLED_APPS = [