27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
# Since the ".env" file is gitignored, you can use the ".env.example" file to
|
|
# build a new ".env" file when you clone the repo. Keep this file up-to-date
|
|
# when you add new variables to `.env`.
|
|
|
|
# This file will be committed to version control, so make sure not to have any
|
|
# secrets in it. If you are cloning this repo, create a copy of this file named
|
|
# ".env" and populate it with your secrets.
|
|
|
|
# When adding additional environment variables, the schema in "/src/env.js"
|
|
# should be updated accordingly.
|
|
|
|
# Contact form email — where submissions get forwarded. Set SMTP_HOST and
|
|
# CONTACT_TO to enable delivery; without them, submissions are only logged.
|
|
SMTP_HOST=""
|
|
SMTP_PORT="587"
|
|
# "true" for port 465 (implicit TLS), "false" for 587 (STARTTLS).
|
|
SMTP_SECURE="false"
|
|
SMTP_USER=""
|
|
SMTP_PASS=""
|
|
# Your inbox (where inquiries land) and the From address they're sent as.
|
|
CONTACT_TO=""
|
|
CONTACT_FROM="Hadlock Technologies <no-reply@hadlock.tech>"
|
|
|
|
# Umami analytics (optional) — set both to enable the tracking script.
|
|
NEXT_PUBLIC_UMAMI_SRC=""
|
|
NEXT_PUBLIC_UMAMI_WEBSITE_ID=""
|