Files
kennethreitz.org/Makefile
T
kennethreitz 873a198f22 Add PyTheory essay and fix Makefile ASGI app reference
New essay on breaking through a 5-year creative block with AI collaboration
on the PyTheory music theory library. Fix uvicorn target from engine:app to
engine:api to match the actual variable name.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 14:24:38 -04:00

12 lines
154 B
Makefile

init:
uv sync
run:
uv run uvicorn engine:api --host 0.0.0.0 --port 8000 --reload
docker-run:
docker-compose up --build
build:
docker compose build