SIENTIAPDE-1075

Add run instructions for the Ingestor
This commit is contained in:
vitor-aignosi
2025-05-22 10:06:03 -03:00
parent 8b2e158f72
commit 861101ffc6

View File

@@ -25,6 +25,20 @@ docker compose build --ssh default=$HOME/.ssh/id_ed25519_docker
docker compose up -d docker compose up -d
``` ```
### Run Ingestor
The ingestor can be run as a docker container or as a python script.
As a docker container:
Uncomment the ingestor service in docker-compose.yaml
```
docker compose up -d ingestor
```
As a python script:
```
python -m ingestor.app
```
### Populate redis server ### Populate redis server
Create venv with python3.11 Create venv with python3.11
``` ```