File size: 350 Bytes
aa4f7bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Contributing
Run tests:
```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -e .
pip install pytest
pytest -q
```
To run the API locally:
```bash
uvicorn server.app:app --host 0.0.0.0 --port 7860
```
Please open PRs against `main`. Add tests for new behavior and keep changes small and focused.
|