From 146ff022af05fe546fd6d66e49b647b68ba9b184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasan=20Talha=20Yaz=C4=B1c=C4=B1?= Date: Mon, 7 Dec 2020 23:36:16 +0100 Subject: [PATCH] Fix template env variable naming When I tried to use this template env file to create my own environment variables, I encountered the issue of non-matching variable naming between the env file and the settings.py, realized that here `STRIPE_PUBLISH_KEY` was used instead of `STRIPE_PUBLIC_KEY`. This commit changes this and fixes the faulty naming to the correct one. --- ecom/.template.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecom/.template.env b/ecom/.template.env index ae5c036..1360e23 100644 --- a/ecom/.template.env +++ b/ecom/.template.env @@ -4,6 +4,6 @@ DEFAULT_FROM_EMAIL= NOTIFY_EMAIL= PAYPAL_SANDBOX_CLIENT_ID= PAYPAL_SANDBOX_SECRET_KEY= -STRIPE_PUBLISH_KEY= +STRIPE_PUBLIC_KEY= STRIPE_SECRET_KEY= -STRIPE_WEBHOOK_SECRET= \ No newline at end of file +STRIPE_WEBHOOK_SECRET=