This repository has been archived on 2026-09-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
theme-song-booth/.env.example

36 lines
1.3 KiB
Text

# .env.example
# ============
#
# Copy this file to .env for local development, or paste the values into
# Portainer when deploying the stack.
#
# Required for production:
# APP_SECRET_KEY - long random string used by Flask for sessions
# ADMIN_PASSWORD - password for the /admin dashboard
# SMTP_PASS - password for the SMTP account
# PUBLIC_BASE_URL - public HTTPS URL customers will use (e.g. https://booth.example.com)
#
# Optional:
# BOOTH_NAME - name shown in emails
# HOST_PORT - host-side port mapping for docker-compose (default 127.0.0.1:8000)
# INTERNAL_PORT - port gunicorn binds inside the container (default 8000)
# PRICE_PER_VERSION - shown on the receipt page (default 10.00)
# CURRENCY - currency label (default CAD)
# ADMIN_ALERT_EMAIL - unused; dashboard is the operator queue
APP_SECRET_KEY=change-me-in-production
ADMIN_PASSWORD=change-me
SMTP_HOST=mailroot8.namespro.ca
SMTP_PORT=465
SMTP_USER=ai@hallsworth.ca
SMTP_PASS=
SMTP_FROM=ai@hallsworth.ca
ADMIN_ALERT_EMAIL=
PUBLIC_BASE_URL=http://127.0.0.1:5000
BOOTH_NAME=Trollgorithm Theme Songs
INTERNAL_PORT=8000
HOST_PORT=127.0.0.1:8000
PRICE_PER_VERSION=10.00
CURRENCY=CAD
DATABASE=/app/data/booth.db
UPLOAD_FOLDER=/app/uploads