13 lines
294 B
Makefile
13 lines
294 B
Makefile
run:
|
|
.venv/bin/python flows/embedding_flow.py
|
|
|
|
web:
|
|
.venv/bin/python -m uvicorn app.web.main:app --host 0.0.0.0 --port 8001 --reload
|
|
|
|
demo:
|
|
.venv/bin/python -m uvicorn app.demo.main:app --host 0.0.0.0 --port 8010 --reload
|
|
|
|
compile:
|
|
uv pip compile pyproject.toml -o requirements-frozen.txt
|
|
|