timetracker/Makefile

65 lines
1.4 KiB
Makefile
Raw Normal View History

2023-01-02 19:03:31 +00:00
all: css migrate
2023-01-05 20:10:17 +00:00
initialize: npm css migrate sethookdir loadplatforms
2023-01-02 19:03:31 +00:00
HTMLFILES := $(shell find games/templates -type f)
2023-01-03 11:34:50 +00:00
npm:
npm install
css: input.css
npx tailwindcss -i ./input.css -o ./games/static/base.css
2023-01-02 19:03:31 +00:00
css-dev: css
npx tailwindcss -i ./input.css -o ./games/static/base.css --watch
2023-01-02 19:03:31 +00:00
makemigrations:
poetry run python manage.py makemigrations
2023-01-02 19:03:31 +00:00
migrate: makemigrations
poetry run python manage.py migrate
2023-01-02 19:03:31 +00:00
2023-01-16 18:49:41 +00:00
dev: migrate
poetry run python manage.py runserver
2023-01-02 19:03:31 +00:00
2023-01-07 20:59:34 +00:00
caddy:
caddy run --watch
2023-01-16 18:49:41 +00:00
dev-prod: migrate collectstatic
PROD=1 poetry run python -m gunicorn --bind 0.0.0.0:8001 timetracker.asgi:application -k uvicorn.workers.UvicornWorker
2023-01-07 20:09:47 +00:00
dumpgames:
poetry run python manage.py dumpdata --format yaml games --output tracker_fixture.yaml
2023-01-02 19:03:31 +00:00
loadplatforms:
poetry run python manage.py loaddata platforms.yaml
2023-01-02 19:03:31 +00:00
2023-01-20 18:58:31 +00:00
loadall:
poetry run python manage.py loaddata data.yaml
2023-01-02 19:03:31 +00:00
loadsample:
poetry run python manage.py loaddata sample.yaml
createsuperuser:
poetry run python manage.py createsuperuser
2023-01-03 21:04:22 +00:00
shell:
poetry run python manage.py shell
2023-01-05 11:19:56 +00:00
2023-01-07 20:09:47 +00:00
collectstatic:
poetry run python manage.py collectstatic --clear --no-input
2023-01-07 20:09:47 +00:00
poetry.lock: pyproject.toml
2023-01-05 11:19:56 +00:00
poetry install
test: poetry.lock
2023-01-05 20:10:17 +00:00
poetry run pytest
2023-01-07 20:09:47 +00:00
date:
2023-01-08 14:48:12 +00:00
poetry run python -c 'import datetime; from zoneinfo import ZoneInfo; print(datetime.datetime.isoformat(datetime.datetime.now(ZoneInfo("Europe/Prague")), timespec="minutes", sep=" "))'
2023-01-07 20:09:47 +00:00
cleanstatic:
rm -r static/*
2023-01-07 20:09:47 +00:00
2023-01-07 20:59:34 +00:00
clean: cleanstatic