-
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) · 767 Bytes
/
Copy path.env.example
File metadata and controls
36 lines (29 loc) · 767 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
# HGE CONFIGURATION TEMPLATE
# ==========================
# IMPORTANT: DO NOT COMMIT REAL SECRETS TO THE REPOSITORY.
# Replace these values with secure, randomized strings in your local .env file.
# Environment Settings
NODE_ENV=production
PORT=3001
DEBUG_MODE=false
VERBOSE_ERRORS=false
# Database Connectivity
MONGO_URI=mongodb://localhost:27017/hge_db
REDIS_URL=redis://localhost:6379
# Authentication Secrets
# Generate secure keys using: openssl rand -hex 32
JWT_SECRET=
JWT_REFRESH_SECRET=
SESSION_SECRET=
# Access Control
# High-entropy administrative identifiers
ADMIN_KEY=
INTERNAL_API_KEY=
# File Storage
FILE_UPLOAD_PATH=./uploads
MAX_FILE_SIZE=10485760
# Infrastructure & SMTP
SMTP_HOST=smtp.hellcorp.onion
SMTP_PORT=587
# Networking
CORS_ORIGIN=*