-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
33 lines (28 loc) · 927 Bytes
/
.env.example
File metadata and controls
33 lines (28 loc) · 927 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
# ==============================================================================
# StreamVision Environment Variables Template
# ==============================================================================
# Copy this file to .env and fill in your actual values.
# Do NOT commit your actual .env file to version control.
# Server Configuration
PORT=3000
NODE_ENV=development
APP_VERSION=1.0.0
# Database Configuration
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=your_password
DB_DATABASE=stream_vision
# DB_CA is optional, used for SSL connections (base64 encoded certificate)
# DB_CA=
# Security & Authentication
jwt_token=your_super_secret_jwt_token
saltRounds=10
# Streaming Configuration
# Automatically stop streams after X minutes of inactivity
STREAM_AUTO_STOP_MINUTES=120
# Monitoring & Logging (Optional)
PROMETHEUS_USER=admin
PROMETHEUS_PASS=admin_password
LOKI_USER=admin
LOKI_PASS=admin_password