hugo-mx-gateway/app.yaml.sample

24 lines
838 B
Plaintext
Raw Normal View History

runtime: go112
2020-05-31 13:45:44 +02:00
# Uncomment the 'service' parameter if you're deploying the hugo-mx-gateway
# under an existing App.
#
2021-09-14 23:37:07 +02:00
service: hugo-mx-gateway
2020-05-31 13:45:44 +02:00
# Set the below configuration environment variables with appropriate values
#
env_variables:
TEMPLATE_DEMO_REQUEST_REPLY: templates/template_reply_demo_request.html
TEMPLATE_CONTACT_REQUEST_REPLY: templates/template_reply_contact_request.html
SMTP_SERVER_ADDR: "smtp.mailgun.org:587"
2022-05-15 18:03:12 +02:00
SMTP_SKIP_VERIFY_CERT: false
SMTP_AUTHENTICATION_ENABLED: true
SMTP_CLIENT_USERNAME: "postmaster@example.com"
SMTP_CLIENT_PASSWORD: "postmasterSecretPassWord"
CONTACT_REPLY_EMAIL: "noreply@example.com"
CONTACT_REPLY_BCC_EMAIL: "contact@example.com"
DEMO_URL: "https://demo.example.com/"
ALLOWED_ORIGINS: "127.0.0.1,example.com"
2021-09-14 23:37:07 +02:00
RECAPTCHA_PRIVATE_KEY: "value-of-recaptcha-private-key"