mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-01 19:58:59 -05:00
19 lines
257 B
Markdown
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
|
|
```
|