-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dev.example
More file actions
35 lines (29 loc) · 997 Bytes
/
.env.dev.example
File metadata and controls
35 lines (29 loc) · 997 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
# EduLift Development Environment Configuration Example
# Copy this file to .env.dev and fill in your actual values
# Application
NODE_ENV=development
FRONTEND_URL=http://localhost:3000
BACKEND_PORT=3001
FRONTEND_PORT=3000
# Database
POSTGRES_DB=edulift_dev
POSTGRES_USER=edulift_dev
POSTGRES_PASSWORD=your-dev-postgres-password
POSTGRES_PORT=5433
DATABASE_URL=postgresql://edulift_dev:your-dev-postgres-password@postgres:5432/edulift_dev
# Redis Cache (for development)
REDIS_PASSWORD=your-dev-redis-password
REDIS_PORT=6380
REDIS_URL=redis://:your-dev-redis-password@redis:6379
# Security (use different secrets for dev)
JWT_ACCESS_SECRET=your-dev-jwt-secret
# Email Configuration (optional for dev - uses mock by default)
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_SECURE=false
EMAIL_USER=your-dev-email@gmail.com
EMAIL_PASSWORD=your-app-specific-password
EMAIL_FROM=noreply@localhost
# Frontend API URL
VITE_API_URL=http://localhost:3001/api/v1
VITE_SOCKET_URL=http://localhost:3001