Files
DocNest/backend/.env.example
2025-12-29 16:29:24 -08:00

14 lines
408 B
Plaintext

# Server Configuration
PORT=8080
# Database Configuration
# Format: postgres://username:password@host:port/database?sslmode=disable
DATABASE_URL=postgres://collab:your_password_here@localhost:5432/collaboration?sslmode=disable
# Redis Configuration
REDIS_URL=redis://localhost:6379
# CORS Configuration
# Comma-separated list of allowed origins
ALLOWED_ORIGINS=http://localhost:5173,http://localhost:3000