Add debug toolbar

This commit is contained in:
2022-09-05 07:20:30 +01:00
parent 8ae15ce9a4
commit ad4d24b3a0
7 changed files with 16 additions and 2 deletions

View File

@@ -15,4 +15,4 @@ WORKDIR /code
COPY requirements.dev.txt /code/
RUN python -m venv /venv
RUN . /venv/bin/activate && pip install -r requirements.dev.txt
CMD . /venv/bin/activate && exec python manage.py runserver 0.0.0.0:8000
CMD . /venv/bin/activate && exec python manage.py runserver --nothreading 0.0.0.0:8000