Team13.4 / Makefile
Xmaster6y's picture
initial setup
ab8b5a4
raw
history blame
208 Bytes
.PHONY dev:
dev:
@echo "Starting the application..."
@uv run uvicorn api.main:app --reload
.PHONY start:
start:
@echo "Starting the application..."
@uv run uvicorn api.main:app --host 0.0.0.0 --port 8000