forked from dotnetfactory/personal-financial-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.14 KB
/
.env.example
File metadata and controls
33 lines (29 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Plaid API credentials
# Get these from https://dashboard.plaid.com/team/keys
PLAID_CLIENT_ID=""
PLAID_SECRET=""
# Use 'sandbox' for testing, 'development' for real banks with test credentials,
# or 'production' for real banks with real credentials
PLAID_ENV="development"
# Coinbase API credentials
# Get these from https://www.coinbase.com/settings/api
COINBASE_CLIENT_ID=""
COINBASE_CLIENT_SECRET=""
COINBASE_REDIRECT_URI="http://localhost:3000/api/crypto/oauth/callback"
# Database configuration
# SQLite database file location (relative to project root)
DATABASE_URL="file:./dev.db"
# NextAuth configuration
# Generate a secret with: openssl rand -base64 32
NEXTAUTH_SECRET=""
# Local development URL
NEXTAUTH_URL="http://localhost:3000"
# Email Configuration (Optional - for daily balance updates)
# Amazon SES SMTP credentials
# Get these from AWS SES Console -> SMTP Settings
EMAIL_HOST="email-smtp.us-east-1.amazonaws.com"
EMAIL_PORT=587
EMAIL_USER="" # SMTP Username from AWS SES
EMAIL_PASSWORD="" # SMTP Password from AWS SES
# The email address you've verified with SES that you'll send from
EMAIL_FROM="" # e.g., "notifications@yourdomain.com"