Revert make dev to plain runserver
The runserver_plus has problems with cache not being invalidated
This commit is contained in:
parent
2defdd4657
commit
d8ece979a8
|
@ -6,7 +6,7 @@ RUN npm install && \
|
||||||
|
|
||||||
FROM python:3.10.9-alpine
|
FROM python:3.10.9-alpine
|
||||||
|
|
||||||
ENV VERSION_NUMBER 0.2.0
|
ENV VERSION_NUMBER 0.2.0-1-g2defdd4
|
||||||
ENV PROD 1
|
ENV PROD 1
|
||||||
|
|
||||||
RUN apk add \
|
RUN apk add \
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -20,7 +20,7 @@ migrate: makemigrations
|
||||||
poetry run python src/web/manage.py migrate
|
poetry run python src/web/manage.py migrate
|
||||||
|
|
||||||
dev: migrate sethookdir
|
dev: migrate sethookdir
|
||||||
poetry run python src/web/manage.py runserver_plus
|
poetry run python src/web/manage.py runserver
|
||||||
|
|
||||||
caddy:
|
caddy:
|
||||||
caddy run --watch
|
caddy run --watch
|
||||||
|
|
Loading…
Reference in New Issue