-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (18 loc) · 995 Bytes
/
.env.example
File metadata and controls
24 lines (18 loc) · 995 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
# PostgreSQL Database Connection
# Copy this file to .env and fill in your actual database credentials
# Database URL format: postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=SCHEMA
DATABASE_URL="postgresql://username:password@localhost:5432/content_intelligence?schema=public"
# Optional: Direct URL for migrations (if using connection pooling)
DIRECT_URL="postgresql://username:password@localhost:5432/content_intelligence?schema=public"
# Application Settings
NODE_ENV="production"
# =============================================================================
# Authentication Settings (REQUIRED)
# =============================================================================
# Username for login
AUTH_USERNAME="admin"
# Password for login (change this to a secure password!)
AUTH_PASSWORD="change-me-to-secure-password"
# Secret key for session signing (generate a random string)
# You can generate one with: openssl rand -hex 32
AUTH_SECRET="change-me-to-random-secret-string"