Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ PORT=3001

# PostgreSQL Database (docker-compose.unified.yml)
# Default credentials match unified compose
DATABASE_URL=postgresql://datacendia:datacendia_secure_2024@localhost:5433/datacendia
DATABASE_URL=postgresql://datacendia:CHANGE_ME_POSTGRES_PASSWORD@localhost:5433/datacendia

# Redis - Docker container with password
# Matches docker-compose.unified.yml redis service
REDIS_URL=redis://:datacendia_redis_2024@localhost:6380
REDIS_URL=redis://:CHANGE_ME_REDIS_PASSWORD@localhost:6380

# Neo4j Graph Database
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=datacendia_graph_2024
NEO4J_PASSWORD=CHANGE_ME_USE_A_STRONG_PASSWORD

# Ollama LLM — Multi-Model Architecture
OLLAMA_BASE_URL=http://127.0.0.1:11434
Expand All @@ -32,8 +32,9 @@ OLLAMA_MODEL_FAST=llama3.2:3b
OLLAMA_MODEL_VISION=qwen3-vl:30b

# JWT Secrets (generate strong random strings in production)
JWT_SECRET=datacendia-jwt-secret-change-in-production-2024
JWT_REFRESH_SECRET=datacendia-refresh-secret-change-in-production-2024
# Generate secure secrets with: openssl rand -base64 64
JWT_SECRET=CHANGE_ME_GENERATE_A_SECURE_64_CHAR_SECRET
JWT_REFRESH_SECRET=CHANGE_ME_GENERATE_ANOTHER_SECURE_SECRET
JWT_EXPIRES_IN=1h
JWT_REFRESH_EXPIRES_IN=30d

Expand Down