-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env-example
More file actions
23 lines (19 loc) · 907 Bytes
/
.env-example
File metadata and controls
23 lines (19 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maybe Finance API Configuration
# Sign up at https://api.synthfinance.com to get your API key
API_KEY=your_maybe_finance_api_key
BASE_URL=https://api.synthfinance.com
# Database Configuration
# MongoDB connection string - replace with your own database credentials
DATABASE_URL=mongodb+srv://username:password@cluster.example.mongodb.net/your_database?retryWrites=true&w=majority
# CopilotKit Configuration
# Get your API key from CopilotKit dashboard
NEXT_PUBLIC_COPILOTKIT_API_KEY=your_copilotkit_public_key
# Google OAuth Configuration (for NextAuth)
# Create these at https://console.cloud.google.com/apis/credentials
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
# NextAuth.js Configuration
# Generate a secure random string for NEXTAUTH_SECRET
NEXTAUTH_SECRET=your_nextauth_secret_key
# The base URL of your application
NEXTAUTH_URL=http://localhost:3000