4ae515bbab
Version is set via APP_VERSION in .env, defaulting to 1.0.0. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
1010 B
Bash
33 lines
1010 B
Bash
# Application version shown on login and profile pages
|
|
APP_VERSION=1.0.0
|
|
|
|
# Secret key for signing session cookies — use a long random string in production
|
|
SECRET_KEY=change-me-to-a-long-random-string
|
|
|
|
# Email address of the admin user
|
|
ADMIN_EMAIL=admin@example.com
|
|
|
|
# Base URL used to build magic links (no trailing slash)
|
|
SITE_URL=http://localhost:8000
|
|
|
|
# development | production
|
|
ENV=development
|
|
|
|
# Path to the SQLite database file (inside the container)
|
|
DATABASE_PATH=/data/skinspins.db
|
|
|
|
# GolfCourseAPI key — get one at https://www.golfcourseapi.com
|
|
# Leave empty to disable the course search/import feature
|
|
GOLF_COURSE_API_KEY=
|
|
|
|
# SMTP email settings (leave SMTP_HOST empty to disable email and log links instead)
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your@email.com
|
|
SMTP_PASSWORD=your-smtp-password
|
|
SMTP_FROM=noreply@example.com
|
|
# Use implicit SSL/TLS (port 465). Set SMTP_TLS=false when using SSL.
|
|
SMTP_SSL=false
|
|
# Use STARTTLS (port 587). Set to "false" when using SSL.
|
|
SMTP_TLS=true
|