# Port on which the app runs PORT=3000 # Hostname for the server HOSTNAME=0.0.0.0 # NextAuth Configuration # Secret for signing tokens (generate with: openssl rand -base64 32) NEXTAUTH_SECRET=your-generated-secret-key # Data directory for persistent storage (config, backups, database) DATA_DIR=./data # SQLite database file (should be under DATA_DIR) DATABASE_FILE=database.db # Optional: Polling interval for status checks (in milliseconds) # STATUS_POLL_INTERVAL=30000