Files
onGuard24/Makefile

8 lines
206 B
Makefile

.PHONY: run install lint
install:
python3 -m venv .venv && . .venv/bin/activate && pip install -e .
run:
. .venv/bin/activate && python -m uvicorn onguard24.main:app --reload --host 0.0.0.0 --port 8080