Initial commit: StreamFlow IPTV platform
This commit is contained in:
commit
73a8ae9ffd
1240 changed files with 278451 additions and 0 deletions
23
.env.example
Normal file
23
.env.example
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Environment variables for StreamFlow IPTV
|
||||
|
||||
# Node environment
|
||||
NODE_ENV=production
|
||||
|
||||
# Application port
|
||||
PORT=12345
|
||||
|
||||
# Security secrets (CHANGE THESE IN PRODUCTION!)
|
||||
JWT_SECRET=your_jwt_secret_key_here_change_this_in_production
|
||||
SESSION_SECRET=your_session_secret_here_change_this_in_production
|
||||
|
||||
# User registration (set to 'false' to enable public signups, default: true/disabled)
|
||||
DISABLE_SIGNUPS=true
|
||||
|
||||
# Database
|
||||
DB_PATH=/app/data/streamflow.db
|
||||
|
||||
# Recording settings
|
||||
MAX_RECORDING_SIZE=100GB
|
||||
|
||||
# Logging
|
||||
LOG_LEVEL=info
|
||||
Loading…
Add table
Add a link
Reference in a new issue