-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
18 lines (16 loc) · 747 Bytes
/
Copy path.env.example
File metadata and controls
18 lines (16 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Plaid API Credentials
# Get these from: https://dashboard.plaid.com/
PLAID_CLIENT_ID=your_plaid_client_id_here
PLAID_SECRET=your_plaid_secret_here
PLAID_ENV=sandbox
# Token Encryption (for stateless app)
# Generate with: python3 -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
TOKEN_ENCRYPTION_KEY=your_encryption_key_here
# Experian API Credentials (optional for credit scores)
# Get these from: https://developer.experian.com/
EXPERIAN_CLIENT_ID=your_experian_client_id_here
EXPERIAN_CLIENT_SECRET=your_experian_client_secret_here
EXPERIAN_ENV=sandbox
# Your Experian Developer Portal login credentials (required for OAuth)
EXPERIAN_USERNAME=your_experian_username
EXPERIAN_PASSWORD=your_experian_password