Initial JARED implementation - Predefined flows manager for CORP

- Flask API with full CRUD for flows
- Execute flow with OK->FELDMAN / incidencia->MASON routing
- PostgreSQL integration with host DB
- Docker deployment on port 5052
- S-CONTRACT v2.1 compliant
This commit is contained in:
ARCHITECT
2025-12-24 10:25:10 +00:00
commit b4bb286396
7 changed files with 488 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
version: "3.8"
services:
jared:
build: .
container_name: jared-service
restart: unless-stopped
ports:
- "5052:5052"
environment:
- H_INSTANCIA=${H_INSTANCIA}
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_NAME=${DB_NAME}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- PORT=5052
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- tzzr-network
networks:
tzzr-network:
external: true