# Sample file for environment variable configuration  
# Copy this file to .env and adjust the values as needed  

# Site name displayed in the header and meta tags  
SITE_NAME=Marreta  

# Site description used in meta tags and SEO  
SITE_DESCRIPTION="Chapéu de paywall é marreta!"  

# Site language (available options: pt-br, en, es, de-de, ru-ru)  
# pt-br = Brazilian Portuguese  
# en = English  
# es = Spanish  
# de-de = German  
# ru-ru = Russian  
LANGUAGE=pt-br  

# Base URL of the site (without a trailing slash)  
# Use https://localhost for local development  
SITE_URL=https://localhost  

# List of DNS servers for domain resolution  
# Recommended: AdGuard DNS (94.140.14.14, 94.140.15.15)  
DNS_SERVERS='94.140.14.14,94.140.15.15'  

# Disable cache mode (true/false)  
# When enabled, system caching is turned off  
DISABLE_CACHE=false  

# S3 Cache Settings  
S3_CACHE_ENABLED=false  
S3_ACCESS_KEY=  
S3_SECRET_KEY=  
S3_BUCKET=  
S3_REGION=us-east-1  
S3_FOLDER=cache/  
S3_ACL=private  
S3_ENDPOINT=  

# Selenium Configuration  
SELENIUM_HOST=localhost:4444  

# Debug Settings
DEBUG=false

# Cache Cleanup Settings
# Number of days to keep cache files (*.gz)
# If not set, no files will be cleaned
CLEANUP_DAYS=7