RAGForge / Makefile
ArchitSharma's picture
init
5ea3240
Raw
History Blame Contribute Delete
299 Bytes
.PHONY: install run test lint docker
install:
python -m pip install -r requirements-dev.txt
run:
uvicorn app:app --host 0.0.0.0 --port 7860 --reload
test:
pytest -q
lint:
ruff check src tests app.py
docker:
docker build -t ragforge .
docker run --rm -p 7860:7860 --env-file .env ragforge