Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 777 Bytes

File metadata and controls

47 lines (32 loc) · 777 Bytes

PostgreSQL Setup Guide

This page provides PostgreSQL-focused commands. The full end-to-end setup (CLI, Docker, Compose, Helm) is in local-setup.md.

Docker Compose (GHCR track)

export DECISION_ENGINE_TAG=v1.4
docker compose --profile postgres-ghcr up -d

With dashboard + docs:

docker compose --profile dashboard-postgres-ghcr up -d

Docker Compose (Local build track)

docker compose --profile postgres-local up -d --build

With dashboard + docs:

docker compose --profile dashboard-postgres-local up -d --build

Make targets

make init-pg-ghcr
make init-pg-local

Verify

curl http://localhost:8080/health

Expected response:

{"message":"Health is good"}