homelab/templates/service-template/.env.example
Eduardo Figueroa 3bf1575ca8 chore: General catchup - service updates and cleanup
Updated service configurations, added new services, removed deprecated
ones, and improved gitignore patterns for better repository hygiene.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-15 05:23:02 +00:00

48 lines
1.1 KiB
Text

# Service Configuration
# Copy this file to .env and update with your actual values
# Timezone
TZ=America/Los_Angeles
# User/Group IDs (match your host user)
PUID=1000
PGID=1000
# Service-specific configuration
# Uncomment and configure as needed:
# Database Configuration (if using database)
# DB_PASSWORD=changeme_please_set_secure_password
# DB_USERNAME=serviceuser
# DB_DATABASE_NAME=servicedb
# Redis Configuration (if using Redis)
# REDIS_PASSWORD=changeme_please_set_secure_password
# Application Settings
# APP_URL=https://service.fig.systems
# APP_SECRET=changeme_please_set_random_secret
# API_KEY=changeme_your_api_key_here
# Email/SMTP Configuration (Mailgun)
SMTP_HOST=smtp.mailgun.org
SMTP_PORT=587
SMTP_USER=noreply@fig.systems
SMTP_PASSWORD=
SMTP_FROM=Service <noreply@fig.systems>
# Optional SMTP settings
# SMTP_TLS=true
# SMTP_STARTTLS=true
# Storage Configuration
# STORAGE_PATH=/data
# MAX_UPLOAD_SIZE=100M
# Security
# ADMIN_EMAIL=admin@edfig.dev
# ADMIN_PASSWORD=changeme_please_set_secure_password
# Feature Flags (example)
# ENABLE_REGISTRATION=false
# ENABLE_API=true
# LOG_LEVEL=info