fix card_multiselect filtering and quantity controls

This commit is contained in:
badblocks 2025-03-13 15:48:26 -07:00
parent 6e4c6040bd
commit b97ddde71c
52 changed files with 1689 additions and 2268 deletions

View file

@ -19,6 +19,7 @@ RUN set -ex && \
# Copy local project
COPY . /code/
COPY .env.production /code/.env
ENV HOME=/code
# Install NPM & node.js
@ -32,5 +33,4 @@ EXPOSE 8000
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"]