Add .env.example
This commit is contained in:
parent
27506fc6ff
commit
e3efa14cd7
1 changed files with 26 additions and 0 deletions
26
.env.example
Normal file
26
.env.example
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
# AME Remote Job Manager Configuration
|
||||||
|
|
||||||
|
# Server
|
||||||
|
PORT=3100
|
||||||
|
AUTH_USER=Admin
|
||||||
|
AUTH_PASS=changeme
|
||||||
|
|
||||||
|
# Watch folder (where AME looks for new projects to render)
|
||||||
|
WATCH_FOLDER=/watch
|
||||||
|
|
||||||
|
# Output folder (where AME writes rendered output)
|
||||||
|
OUTPUT_FOLDER=/output
|
||||||
|
|
||||||
|
# Polling interval for folder monitoring (milliseconds)
|
||||||
|
POLL_INTERVAL_MS=5000
|
||||||
|
|
||||||
|
# Job timeout - mark as error if no output after this duration (milliseconds)
|
||||||
|
# Default: 3600000 (1 hour)
|
||||||
|
JOB_TIMEOUT_MS=3600000
|
||||||
|
|
||||||
|
# S3 Configuration (for future Phase 2 media upload)
|
||||||
|
S3_ENDPOINT=https://broadcastmgmt.cloud
|
||||||
|
S3_ACCESS_KEY=your_access_key
|
||||||
|
S3_SECRET_KEY=your_secret_key
|
||||||
|
S3_BUCKET=encoder
|
||||||
|
S3_REGION=us-east-1
|
||||||
Loading…
Reference in a new issue