-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-keys.example.js
More file actions
34 lines (27 loc) · 1.27 KB
/
Copy pathapi-keys.example.js
File metadata and controls
34 lines (27 loc) · 1.27 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
34
// Example API Keys Configuration
// Copy this file to 'api-keys.js' and fill in your actual API keys
// NEVER commit api-keys.js to version control!
const API_KEYS = {
// OpenAI API for AI task generation
// Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY: 'sk-your-openai-api-key-here',
// Clerk Authentication
// Get your keys from: https://dashboard.clerk.com/
CLERK_PUBLISHABLE_KEY: 'pk_test_your-clerk-publishable-key-here',
// Supabase Backend
// Get your keys from: https://supabase.com/dashboard
SUPABASE_URL: 'https://your-project-id.supabase.co',
SUPABASE_ANON_KEY: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...',
// Google Calendar API
// Get your keys from: https://console.cloud.google.com/
GOOGLE_CLIENT_ID: 'your-google-client-id.googleusercontent.com',
GOOGLE_API_KEY: 'AIzaSyYour-Google-API-Key-Here',
// WhatsApp Business API (Optional)
// Get from: https://developers.facebook.com/docs/whatsapp
WHATSAPP_ACCESS_TOKEN: 'your-whatsapp-access-token-here',
WHATSAPP_PHONE_NUMBER_ID: 'your-phone-number-id-here',
// Alternative: Use WhatsApp Web (Simpler setup)
WHATSAPP_WEB_ENABLED: true
};
// Export for use in main application
window.API_KEYS = API_KEYS;