From a4719fe15bf494518f32d622d401e1c3b4731d43 Mon Sep 17 00:00:00 2001 From: Ahmed Bouhuolia Date: Tue, 4 Jun 2024 16:21:49 +0200 Subject: [PATCH] fix: add Plaid env variables to docker-compose.prod file --- .env.example | 23 +---------------------- docker-compose.prod.yml | 7 +++++-- 2 files changed, 6 insertions(+), 24 deletions(-) diff --git a/.env.example b/.env.example index a9470e912..de65b4dfb 100644 --- a/.env.example +++ b/.env.example @@ -75,30 +75,9 @@ PLAID_ENV=sandbox # Your Plaid keys, which can be found in the Plaid Dashboard. # https://dashboard.plaid.com/account/keys PLAID_CLIENT_ID= -PLAID_SECRET_DEVELOPMENT= -PLAID_SECRET_SANDBOX= - +PLAID_SECRET= PLAID_LINK_WEBHOOK= -# (Optional) Redirect URI settings section -# Only required for OAuth redirect URI testing (not common on desktop): -# Sandbox Mode: -# Set the PLAID_SANDBOX_REDIRECT_URI below to 'http://localhost:3001/oauth-link'. -# The OAuth redirect flow requires an endpoint on the developer's website -# that the bank website should redirect to. You will also need to configure -# this redirect URI for your client ID through the Plaid developer dashboard -# at https://dashboard.plaid.com/team/api. -# Development mode: -# When running in development mode, you must use an https:// url. -# You will need to configure this https:// redirect URI in the Plaid developer dashboard. -# Instructions to create a self-signed certificate for localhost can be found at -# https://github.com/plaid/pattern/blob/master/README.md#testing-oauth. -# If your system is not set up to run localhost with https://, you will be unable to test -# the OAuth in development and should leave the PLAID_DEVELOPMENT_REDIRECT_URI blank. - -PLAID_SANDBOX_REDIRECT_URI= -PLAID_DEVELOPMENT_REDIRECT_URI= - # https://docs.lemonsqueezy.com/guides/developer-guide/getting-started#create-an-api-key LEMONSQUEEZY_API_KEY= LEMONSQUEEZY_STORE_ID= diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 257caf770..9edff2ef0 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -93,14 +93,17 @@ services: - GOTENBERG_URL=${GOTENBERG_URL} - GOTENBERG_DOCS_URL=${GOTENBERG_DOCS_URL} + # Exchange Rate + - EXCHANGE_RATE_SERVICE=${EXCHANGE_RATE_SERVICE} + - OPEN_EXCHANGE_RATE_APP_ID-${OPEN_EXCHANGE_RATE_APP_ID} + # Bank Sync - BANKING_CONNECT=${BANKING_CONNECT} # Plaid - PLAID_ENV=${PLAID_ENV} - PLAID_CLIENT_ID=${PLAID_CLIENT_ID} - - PLAID_SECRET_DEVELOPMENT=${PLAID_SECRET_DEVELOPMENT} - - PLAID_SECRET_SANDBOX=${PLAID_SECRET_SANDBOX} + - PLAID_SECRET=${PLAID_SECRET} - PLAID_LINK_WEBHOOK=${PLAID_LINK_WEBHOOK} # Lemon Squeez