20 lines
591 B
Bash
20 lines
591 B
Bash
# Copy to .env on the host and chmod 600. Values come from the estate's
|
|||
|
|
# existing accounts — this service issues no credentials of its own.
|
||
|
|
|
||
|
|
# The port this is published on, from the registry at $SHRE_PORTS_PATH.
|
||
|
|
CHANNEL_EXIT_PORT=
|
||
|
|
|
||
|
|
# The shared secret every consumer presents as `Authorization: Bearer ...`.
|
||
|
|
# Generate with: openssl rand -hex 32
|
||
|
|
CHANNEL_EXIT_TOKEN=
|
||
|
|
|
||
|
|
# SendGrid. The key needs mail.send and nothing more.
|
||
|
|
SENDGRID_API_KEY=
|
||
|
|
# Must be a verified sender on that SendGrid account or every send 403s.
|
||
|
|
EMAIL_FROM=
|
||
|
|
|
||
|
|
# Twilio.
|
||
|
|
TWILIO_ACCOUNT_SID=
|
||
|
|
TWILIO_AUTH_TOKEN=
|
||
|
|
TWILIO_FROM=
|