# Copy to .env and fill in values # Generate ENCRYPTION_KEY with: python3 -c "import secrets; print(secrets.token_hex(32))" # Generate DB_PASSWORD with: python3 -c "import secrets; print(secrets.token_urlsafe(32))" # Generate REDIS_PASSWORD with: python3 -c "import secrets; print(secrets.token_urlsafe(32))" # Generate BACKUP_PASSPHRASE with: python3 -c "import secrets; print(secrets.token_urlsafe(32))" ENCRYPTION_KEY=changeme_generate_with_above_command DB_PASSWORD=changeme_generate_with_above_command REDIS_PASSWORD=changeme_generate_with_above_command BACKUP_PASSPHRASE=changeme_generate_with_above_command # App settings ENVIRONMENT=production DOMAIN=localhost ALLOW_REGISTRATION=false BASE_CURRENCY=GBP # Optional: SMTP for future notifications # SMTP_HOST= # SMTP_PORT=587 # SMTP_USER= # SMTP_PASSWORD=