-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 852 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (20 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copy to .env and adjust as needed: cp .env.example .env
# --- Neo4j ---
NEO4J_USER=neo4j
NEO4J_PASSWORD=ekgdfampoc
# Bolt URI used by the backend to reach Neo4j.
# Inside docker-compose this is the service name; for local dev use localhost.
NEO4J_URI=bolt://neo4j:7687
# --- Backend ---
# Path (inside the backend container / repo) to the domain seed file.
EKG_SEED_PATH=data/intake_system.yaml
# Auto-build the EKG from the seed on backend startup (1=yes, 0=no).
EKG_AUTO_BUILD=1
# CORS origins allowed to call the API (comma-separated).
BACKEND_CORS_ORIGINS=http://localhost:5173,http://localhost:8080
# --- Frontend ---
# Base URL the browser uses to reach the API. Empty = same-origin "/api" (nginx proxy).
VITE_API_BASE_URL=
# --- Host port mappings (change if these clash with other local services) ---
BACKEND_PORT=8000
FRONTEND_PORT=8080