# Environment variables for the website hosting service

# Port configuration
PORT=3000

# File size limits (in bytes)
MAX_FREE_SIZE=104857600  # 100MB for free tier
MAX_PAID_SIZE=2147483648 # 2GB for paid tier

# Rental duration (in milliseconds)
RENTAL_DURATION=86400000 # 24 hours

# Allowed domains (comma-separated)
DOMAINS=http://localhost:3000

# Node environment
NODE_ENV=development
