mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
964fe802b9
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>
12 lines
154 B
Makefile
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
|