mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
33a4a11353
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
265 B
Makefile
15 lines
265 B
Makefile
init:
|
|
uv sync
|
|
|
|
run:
|
|
uv run granian --interface asgi --host 0.0.0.0 --port 8000 --reload engine:api
|
|
|
|
run-prod:
|
|
uv run granian --interface asgi --host 0.0.0.0 --port 8000 --workers 4 engine:api
|
|
|
|
docker-run:
|
|
docker-compose up --build
|
|
|
|
build:
|
|
docker compose build
|