beachPartyBalloons/.env.example
chris 0ec3766447 Wire SMTP env vars into main-site container, document in .env.example
Contact form needs SMTP_HOST/PORT/SECURE/USER/PASS and CONTACT_TO passed
through docker-compose. Added to main-site environment block and documented
in .env.example.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-06 20:37:50 -04:00

28 lines
1.3 KiB
Plaintext

# ── Root .env (fallback for Docker Compose < v2.24) ───────────────────────────
#
# Docker Compose v2.24+ reads build env_file directly from estore/.env — you
# should not need this file at all on a modern install.
#
# If your Compose is older and the shop shows "Online payment is not
# configured", copy the four NEXT_PUBLIC_* lines from estore/.env into this
# file so Compose can bake them into the Next.js build:
#
# NEXT_PUBLIC_SQUARE_APP_ID=
# NEXT_PUBLIC_SQUARE_LOCATION_ID=
# NEXT_PUBLIC_SQUARE_ENVIRONMENT=production
# NEXT_PUBLIC_SITE_URL=https://shop.beachpartyballoons.com
#
# All other secrets (access tokens, passwords, etc.) belong only in estore/.env
# — never put them here.
# ── Main site admin ───────────────────────────────────────────────────────────
MAIN_ADMIN_PASSWORD=
# ── Contact form (main-site) ──────────────────────────────────────────────────
SMTP_HOST=mail.beachpartyballoons.com
SMTP_PORT=587
SMTP_SECURE=false
SMTP_USER=info@beachpartyballoons.com
SMTP_PASS=
CONTACT_TO=info@beachpartyballoons.com