# Database Configuration DATABASE_URL=postgres://postgres:postgres@localhost:5432/litecloud # JWT Authentication & Encryption JWT_SECRET=your_jwt_secret_key_here_make_it_long_and_random JWT_EXPIRATION=86400 # in seconds # Generate a secure random key with: openssl rand -base64 32 MASTER_KEY=YourBase64EncodedMasterKeyHere STORAGE_PATH=./storage DEFAULT_USER_QUOTA=5368709120 # 5GB in bytes RUST_LOG=info,tower_http=debug PORT=8080 HOST=0.0.0.0