-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 802 Bytes
/
.env.example
File metadata and controls
36 lines (29 loc) · 802 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
# EduLift Environment Configuration
# Application
NODE_ENV=production
FRONTEND_URL=http://localhost:3000
BACKEND_PORT=3001
FRONTEND_PORT=3000
# Database
POSTGRES_DB=edulift
POSTGRES_USER=edulift
POSTGRES_PASSWORD=edulift_password
POSTGRES_PORT=5432
DATABASE_URL=postgresql://edulift:edulift_password@localhost:5432/edulift
# Redis Cache
REDIS_PASSWORD=edulift_redis
REDIS_PORT=6379
REDIS_URL=redis://:edulift_redis@localhost:6379
# Security
JWT_ACCESS_SECRET=your-super-secret-jwt-key-please-change-this-in-production
# Email Configuration
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USER=your-email@gmail.com
EMAIL_PASSWORD=your-app-password
EMAIL_FROM=noreply@edulift.com
# Frontend API URL
VITE_API_URL=http://localhost:3001/api/v1
# Nginx (for production)
NGINX_PORT=80
NGINX_SSL_PORT=443