Files
kennethreitz.org/Makefile
T
kennethreitz 964fe802b9 Add 4 new essays and switch Makefile to uvicorn
New essays:
- The Coworking Space Saved My Life
- What Requests Taught Me About Marriage
- The Substrate Doesn't Matter (Until It Does)
- Obsidian Vaults & Claude Code: A Second Brain That Thinks Back

Also update Makefile run target from gunicorn to uvicorn to match
the ASGI wrapper in engine.py.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 01:22:36 -05:00

12 lines
154 B
Makefile

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