From 9755f2af551f8be5e53f900301a60666be4ce904 Mon Sep 17 00:00:00 2001 From: Rodrigue Chakode Date: Tue, 12 May 2020 23:41:17 +0200 Subject: [PATCH] renamed sample app config to app.yaml.sample --- app.yaml | 1 - app.yaml.sample | 13 +++++++++++++ ...ply.html => template_reply_contact_request.html} | 0 ..._reply.html => template_reply_demo_request.html} | 0 4 files changed, 13 insertions(+), 1 deletion(-) delete mode 100644 app.yaml create mode 100644 app.yaml.sample rename templates/{template_contact_request_reply.html => template_reply_contact_request.html} (100%) rename templates/{template_demo_request_reply.html => template_reply_demo_request.html} (100%) diff --git a/app.yaml b/app.yaml deleted file mode 100644 index fd880a9..0000000 --- a/app.yaml +++ /dev/null @@ -1 +0,0 @@ -runtime: go112 \ No newline at end of file diff --git a/app.yaml.sample b/app.yaml.sample new file mode 100644 index 0000000..05b03c8 --- /dev/null +++ b/app.yaml.sample @@ -0,0 +1,13 @@ +runtime: go112 + +env_variables: + SMTP_SERVER_ADDR: "smtp.mailgun.org:587" + SMTP_VERITY_CERT: true + SMTP_CLIENT_USERNAME: "postmaster@example.com" + SMTP_CLIENT_PASSWORD: "postmasterSecretPassWord" + CONTACT_REPLY_EMAIL: "noreply@example.com" + CONTACT_REPLY_CC_EMAIL: "contact@example.com" + DEMO_URL: "https://demo.example.com/" + ALLOWED_ORIGIN_DOMAIN: "example.com" + TEMPLATE_DEMO_REQUEST_REPLY: templates/template_reply_demo_request.html + TEMPLATE_CONTACT_REQUEST_REPLY: templates/template_reply_contact_request.html \ No newline at end of file diff --git a/templates/template_contact_request_reply.html b/templates/template_reply_contact_request.html similarity index 100% rename from templates/template_contact_request_reply.html rename to templates/template_reply_contact_request.html diff --git a/templates/template_demo_request_reply.html b/templates/template_reply_demo_request.html similarity index 100% rename from templates/template_demo_request_reply.html rename to templates/template_reply_demo_request.html