From 5535a6d70df5b0e66db9b25b8c4fb52f314d09fc Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Wed, 16 Sep 2020 13:57:33 -0600 Subject: [PATCH] added plaid env variables to settings. --- core/settings/production.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/core/settings/production.py b/core/settings/production.py index a437ea1..d2dd201 100644 --- a/core/settings/production.py +++ b/core/settings/production.py @@ -15,4 +15,11 @@ SECRET_KEY = os.environ.get("SECRET_KEY") # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ['*'] \ No newline at end of file +ALLOWED_HOSTS = ['*'] + +PLAID_PRODUCTS = os.environ.get("PLAID_PRODUCTS") +PLAID_ENV = os.environ.get("PLAID_ENV") +PLAID_PUBLIC_KEY = os.environ.get("PLAID_PUBLIC_KEY") +PLAID_SECRET = os.environ.get("PLAID_SECRET") +PLAID_CLIENT_ID = os.environ.get("PLAID_CLIENT_ID") +PLAID_COUNTRY_CODES = os.environ.get("PLAID_COUNTRY_CODES") \ No newline at end of file