- Add docker-compose.ha.yml for PostgreSQL/Redis HA setup with Patroni and Sentinel - Add docker-compose.prod.yml for production deployment - Add GitHub Actions CI/CD workflow (build.yml) - Add install.cmd for Windows one-click setup - Harden Redis connection with retry logic and health checks - Add Celery HA config with Redis Sentinel support - Add HA operations runbook - Update README with deployment and architecture docs - Move landing page spec to .claude/specs/design/ - Update memory intelligence PRD
11 lines
482 B
Plaintext
11 lines
482 B
Plaintext
# Allow local socket access
|
|
local all all trust
|
|
|
|
# Allow all IPv4/IPv6 client access in local docker network
|
|
host all all 0.0.0.0/0 trust
|
|
host all all ::/0 trust
|
|
|
|
# Allow streaming replication connections
|
|
host replication all 0.0.0.0/0 trust
|
|
host replication all ::/0 trust
|