# Database
DATABASE_URL="postgresql://postgres:ilovepancakes@localhost:5432/sports_ordering"

# App secrets
SECRET_KEY="change_this_to_a_random_secret"

# Frontend URL used in reset links
FRONTEND_URL="http://localhost:5173"

# SMTP (optional — required to actually send emails)
SMTP_HOST="smtp.example.com"
SMTP_PORT="587"
SMTP_USER="smtp-user@example.com"
SMTP_PASSWORD="your-smtp-password"
SMTP_FROM="no-reply@example.com"
SMTP_USE_TLS="true"