18 lines
728 B
Bash
18 lines
728 B
Bash
# Copy to .env.production and fill in.
|
|||
|
|
# .env.production is gitignored; Deploy.ps1 uploads it to the droplet.
|
||
|
|
|
||
|
|
# Resend API key — required for the contact form to actually send.
|
||
|
|
RESEND_API_KEY=
|
||
|
|
|
||
|
|
# Optional — both have sensible defaults in app.py if omitted.
|
||
|
|
CONTACT_TO=alex@lean-101.com
|
||
|
|
CONTACT_FROM=Lean 101 Website <noreply@lean-101.com>
|
||
|
|
|
||
|
|
# Host port the container binds to on the droplet (127.0.0.1:WEBSITE_APP_PORT -> 8000).
|
||
|
|
# Host nginx vhost for www.lean-101.com.au should proxy_pass to this port.
|
||
|
|
WEBSITE_APP_PORT=8083
|
||
|
|
|
||
|
|
# Droplet SSH password — used by Deploy.ps1 via sshpass so you don't have to type it.
|
||
|
|
# Leave blank and pass -SshKey to Deploy.ps1 if you'd rather use key auth.
|
||
|
|
SSH_PASSWORD=7Ajyef6UaAXHAnWrtUua
|