06/05 Optimize app: Add Plaid web hook, healthcheck
This commit is contained in:
+4
-1
@@ -34,7 +34,10 @@ class Config:
|
||||
PLAID_CLIENT_ID = os.environ.get('PLAID_CLIENT_ID', '')
|
||||
PLAID_SECRET = os.environ.get('PLAID_SECRET', '')
|
||||
# Valid values: sandbox, production (Plaid retired the 'development' environment)
|
||||
PLAID_ENV = os.environ.get('PLAID_ENV', 'sandbox')
|
||||
PLAID_ENV = os.environ.get('PLAID_ENV', 'sandbox')
|
||||
# Full public URL Plaid will POST transaction webhooks to (e.g. https://pfm.ngodanguyen.tech/plaid/webhook)
|
||||
# Leave blank to disable webhook registration during Link token creation
|
||||
PLAID_WEBHOOK_URL = os.environ.get('PLAID_WEBHOOK_URL', '')
|
||||
|
||||
# Schwab Developer API (OAuth 2.0)
|
||||
SCHWAB_CLIENT_ID = os.environ.get('SCHWAB_CLIENT_ID', '')
|
||||
|
||||
Reference in New Issue
Block a user