Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.38 KB

File metadata and controls

59 lines (41 loc) · 1.38 KB
title PostgreSQL Setup
description Set up Decision Engine with a PostgreSQL database.

PostgreSQL Setup Guide

This page provides PostgreSQL-focused commands. For the full end-to-end setup — CLI, Docker, Compose, Helm — see the Local Setup Guide.

Docker Compose (GHCR track)

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

With dashboard + docs:

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

Docker Compose (Local build track)

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

With dashboard + docs:

COMPOSE_PROFILES= 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"}

Related Docs