Do not require timestamp_end, initialize db
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-01-03 00:13:26 +01:00
parent 0f2f0d281e
commit 9d142126b1
5 changed files with 56 additions and 4 deletions

View File

@ -1,8 +1,12 @@
.PHONY: createsuperuser
all: css migrate
initialize: css migrate loadplatforms
css: src\input.css src\web\tracker\templates\*.html
HTMLFILES := $(shell find src\web\tracker\templates -type f)
css: src\input.css $(HTMLFILES)
npx tailwindcss -i .\src\input.css -o .\src\web\tracker\static\base.css
css-dev: css
@ -24,4 +28,7 @@ loadplatforms:
python src\web\manage.py loaddata platforms.yaml
loadsample:
python src\web\manage.py loaddata sample.yaml
python src\web\manage.py loaddata sample.yaml
createsuperuser:
python src\web\manage.py createsuperuser