-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
42 lines (36 loc) · 1.27 KB
/
Copy path.env.example
File metadata and controls
42 lines (36 loc) · 1.27 KB
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
38
39
40
41
42
# ============================================
# Database Configuration
# ============================================
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/ethical_hacking_lab?schema=public"
# Docker Compose Variables
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=ethical_hacking_lab
DB_PORT=5432
# ============================================
# Redis Configuration
# ============================================
REDIS_URL="redis://localhost:6379"
REDIS_PORT=6379
# ============================================
# Application Configuration
# ============================================
NODE_ENV=development
APP_PORT=3000
# ============================================
# Authentication
# ============================================
JWT_SECRET=your-super-secret-jwt-key-change-in-production
JWT_EXPIRES_IN=7d
# ============================================
# Optional: External Services
# ============================================
# SMTP_HOST=smtp.example.com
# SMTP_PORT=587
# SMTP_USER=your-email@example.com
# SMTP_PASSWORD=your-email-password
# ============================================
# Optional: GraphQL API (if using external)
# ============================================
# GRAPHQL_API_URL=https://api.example.com/graphql
# GRAPHQL_API_KEY=your-api-key