15 lines
397 B
Plaintext
15 lines
397 B
Plaintext
# Database
|
|
DATABASE_URL="postgresql://username:password@localhost:5432/pve_scripts_local"
|
|
|
|
# Repository Configuration
|
|
REPO_URL="https://github.com/your-org/pve-scripts.git"
|
|
REPO_BRANCH="main"
|
|
SCRIPTS_DIRECTORY="scripts"
|
|
ALLOWED_SCRIPT_EXTENSIONS=".sh,.py,.js,.ts,.bash"
|
|
|
|
# Security
|
|
MAX_SCRIPT_EXECUTION_TIME="300000"
|
|
ALLOWED_SCRIPT_PATHS="scripts/"
|
|
|
|
# WebSocket Configuration
|
|
WEBSOCKET_PORT="3001" |