Use port 5434 for Postgres (5432/5433 in use)

This commit is contained in:
2026-02-02 15:03:09 -06:00
parent f30c25e79f
commit 7e49301f2a
3 changed files with 2095 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ services:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-epstein_dev}
POSTGRES_DB: epstein
ports:
- "5432:5432"
- "5434:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./schema/postgres:/docker-entrypoint-initdb.d:ro

2093
extraction/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -5,7 +5,7 @@ dotenv.config();
const configSchema = z.object({
// Database
DATABASE_URL: z.string().default('postgresql://epstein:epstein_dev@localhost:5432/epstein'),
DATABASE_URL: z.string().default('postgresql://epstein:epstein_dev@localhost:5434/epstein'),
NEO4J_URI: z.string().default('bolt://localhost:7687'),
NEO4J_USER: z.string().default('neo4j'),
NEO4J_PASSWORD: z.string().default('neo4j_dev'),