Do not require timestamp_end, initialize db
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
11
Makefile
11
Makefile
@ -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
|
Reference in New Issue
Block a user