Complete snapshot of /opt/microdao-daarion/ from NODE1 (144.76.224.179).
This represents the actual running production code that has diverged
significantly from the previous main branch.
Key changes from old main:
- Gateway (http_api.py): expanded from ~40KB to 164KB with full agent support
- Router: new /v1/agents/{id}/infer endpoint with vision + DeepSeek routing
- Behavior Policy: SOWA v2.2 (3-level: FULL/ACK/SILENT)
- Agent Registry: config/agent_registry.yml as single source of truth
- 13 agents configured (was 3)
- Memory service integration
- CrewAI teams and roles
Excluded from snapshot: venv/, .env, data/, backups, .tgz archives
Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
622 B
YAML
24 lines
622 B
YAML
services:
|
|
postgres-backup:
|
|
image: prodrigestivill/postgres-backup-local:16
|
|
container_name: postgres-backup-node1
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_HOST: dagi-postgres
|
|
POSTGRES_DB: daarion_main,daarion_memory,rag
|
|
POSTGRES_USER: daarion
|
|
POSTGRES_PASSWORD: DaarionDB2026!
|
|
SCHEDULE: "@every 6h"
|
|
BACKUP_KEEP_DAYS: 7
|
|
BACKUP_KEEP_WEEKS: 4
|
|
BACKUP_KEEP_MONTHS: 6
|
|
POSTGRES_EXTRA_OPTS: "-Z9 --schema=public --blobs"
|
|
volumes:
|
|
- /opt/backups/postgres:/backups
|
|
networks:
|
|
- dagi-network
|
|
|
|
networks:
|
|
dagi-network:
|
|
external: true
|