-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 754 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (20 loc) · 754 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
25
# Production Environment Configuration
# Copy this file to .env and update with your actual values
# Application Environment
NODE_ENV=production
PORT=5000
# Database Configuration
# Replace with your actual PostgreSQL connection string
DATABASE_URL=postgresql://username:password@localhost:5432/graceteam
# Session Security
# Generate a long random string for session security
SESSION_SECRET=your_very_long_random_session_secret_at_least_32_characters_long
# Email Configuration (Optional)
# Get your API key from SendGrid if you want email notifications
SENDGRID_API_KEY=SG.your_sendgrid_api_key_here
# Database Connection Details (for manual setup)
PGHOST=localhost
PGPORT=5432
PGUSER=graceuser
PGPASSWORD=your_secure_password
PGDATABASE=graceteam