9 lines
164 B
Makefile
9 lines
164 B
Makefile
.PHONY: all
|
|
|
|
help:
|
|
@echo "Available commands:"
|
|
@echo " make setup - Set up the application (migrate + ...)"
|
|
|
|
setup:
|
|
/opt/uv/uv run python src/manage.py migrate
|