Files
flowsint/flowsint-api/README.md
2025-09-16 12:25:08 +02:00

19 lines
257 B
Markdown

# flowsint-api
## Installation
1. Install Python dependencies:
2.
```bash
poetry install
```
## Run
```bash
# dev
poetry run uvicorn app.main:app --host 0.0.0.0 --port 5001 --reload
# prod
poetry run uvicorn app.main:app --host 0.0.0.0 --port 5001
```