-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 977 Bytes
/
.env.example
File metadata and controls
37 lines (28 loc) · 977 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
26
27
28
29
30
31
32
33
34
35
36
37
# BrightRoute Environment Variables
# Database Configuration (Neon PostgreSQL)
DATABASE_URL="postgresql://neondb_owner:your_password@ep-your-endpoint-pooler.us-east-1.aws.neon.tech/neondb?sslmode=require"
# Server Configuration
NODE_ENV=development
PORT=5000
FRONTEND_URL="http://localhost:3003"
# JWT Configuration
JWT_SECRET="your-super-secret-jwt-key-change-this-in-production"
JWT_EXPIRATION="7d"
# Security Configuration
BCRYPT_SALT_ROUNDS=12
# Email Configuration (Resend)
RESEND_API_KEY="re_your_api_key_here"
FROM_EMAIL="noreply@brightroute.rw"
# API Configuration
NEXT_PUBLIC_API_URL="http://localhost:5000/api/v1"
# Rate Limiting
RATE_LIMIT_REQUESTS=50
RATE_LIMIT_WINDOW=15m
# AWS S3 Configuration (for file uploads)
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="your_aws_access_key_here"
AWS_SECRET_ACCESS_KEY="your_aws_secret_key_here"
S3_BUCKET="brightroute-transcripts"
# File Upload Configuration
MAX_FILE_SIZE=10485760
ALLOWED_FILE_TYPES="application/pdf"