Files
ihasmail-inbuxa/Makefile
T
2025-10-18 23:11:15 -07:00

14 lines
164 B
Makefile

.PHONY: run dev test build
run:
uvicorn app.main:app --host 0.0.0.0 --port 8000
dev:
uvicorn app.main:app --reload
test:
pytest
build:
docker compose build