finished conversion to tailwind

This commit is contained in:
badblocks 2025-03-11 23:45:27 -07:00
parent 6e2843c60e
commit d62956d465
50 changed files with 2490 additions and 1273 deletions

View file

@ -27,7 +27,10 @@ RUN apt-get update && apt-get install -y nodejs npm
# Expose port 8000
EXPOSE 8000
USER 10003:10003
#USER 10003:10003
RUN python manage.py collectstatic --noinput
# Use gunicorn on port 8000
#CMD ["/bin/bash", "-c", "python manage.py collectstatic --noinput; gunicorn --bind :8000 --workers 2 django_project.wsgi"]
CMD ["gunicorn", "--bind", ":8000", "--workers", "2", "django_project.wsgi"]