Spaces:
Running
Running
File size: 299 Bytes
5ea3240 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | .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
|