timetracker/Makefile

46 lines
938 B
Makefile
Raw Normal View History

2023-01-03 21:04:22 +00:00
.PHONY: createsuperuser shell
2023-01-02 19:03:31 +00:00
all: css migrate
2023-01-03 11:34:50 +00:00
initialize: npm css migrate loadplatforms
2023-01-02 19:03:31 +00:00
2023-01-02 23:17:23 +00:00
HTMLFILES := $(shell find src/web/tracker/templates -type f)
2023-01-03 11:34:50 +00:00
npm:
npm install
css: src/input.css
npx tailwindcss -i ./src/input.css -o ./src/web/tracker/static/base.css
2023-01-02 19:03:31 +00:00
css-dev: css
npx tailwindcss -i ./src/input.css -o ./src/web/tracker/static/base.css --watch
2023-01-02 19:03:31 +00:00
makemigrations:
python src/web/manage.py makemigrations
2023-01-02 19:03:31 +00:00
migrate: makemigrations
python src/web/manage.py migrate
2023-01-02 19:03:31 +00:00
dev: migrate
python src/web/manage.py runserver
2023-01-02 19:03:31 +00:00
dumptracker:
python src/web/manage.py dumpdata --format yaml tracker --output tracker_fixture.yaml
2023-01-02 19:03:31 +00:00
loadplatforms:
python src/web/manage.py loaddata platforms.yaml
2023-01-02 19:03:31 +00:00
loadsample:
python src/web/manage.py loaddata sample.yaml
createsuperuser:
2023-01-03 21:04:22 +00:00
python src/web/manage.py createsuperuser
shell:
2023-01-05 11:19:56 +00:00
python src/web/manage.py shell
poetry.lock: pyproject.toml
2023-01-05 11:19:56 +00:00
poetry install
test: poetry.lock
poetry run pytest