mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-01-06 05:30:14 -06:00
28 lines
513 B
Makefile
28 lines
513 B
Makefile
# https://just.systems
|
|
|
|
alias d := dev
|
|
alias m := migrate
|
|
alias cr := create_revision
|
|
alias tw := tailwind
|
|
|
|
migrate:
|
|
uv run alembic upgrade heads
|
|
|
|
create_revision *MESSAGE:
|
|
uv run alembic revision --autogenerate -m "{{MESSAGE}}"
|
|
|
|
dev: migrate
|
|
uv run fastapi dev
|
|
|
|
node_modules:
|
|
npm install
|
|
|
|
tailwind: node_modules
|
|
tailwindcss -i static/tw.css -o static/globals.css --watch
|
|
|
|
types:
|
|
uv run pyrefly check
|
|
uv run djlint templates
|
|
uv run ruff format --check app
|
|
uv run alembic check
|