forked from tibetsprague/SEED
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (33 loc) · 1.99 KB
/
.env.example
File metadata and controls
38 lines (33 loc) · 1.99 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
35
36
37
38
# SEED Foundry Environment Variables
# Copy this file to .env.local and fill in your actual values
# .env.local is ignored by Git for security
# =============================================================================
# SUPABASE CONFIGURATION
# =============================================================================
# Get these from: Supabase Dashboard → Settings → API
NEXT_PUBLIC_SUPABASE_URL=your_supabase_project_url_here
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key_here
# =============================================================================
# STRIPE CONFIGURATION (for payments)
# =============================================================================
# Get these from: Stripe Dashboard → Developers → API Keys
STRIPE_SECRET_KEY=your_stripe_secret_key_here
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=your_stripe_publishable_key_here
# =============================================================================
# NOTION API CONFIGURATION (for data migration)
# =============================================================================
# Get integration token from: https://www.notion.so/my-integrations
NOTION_TOKEN=secret_your_notion_integration_token_here
# Get database IDs from your Notion database URLs
# Example: https://notion.so/workspace/DATABASE_ID?v=...
NOTION_GOALS_DATABASE_ID=your_goals_database_id_here
NOTION_ENTITY_TYPES_DATABASE_ID=your_entity_types_database_id_here
NOTION_BUSINESS_MODELS_DATABASE_ID=your_business_models_database_id_here
NOTION_FUNDING_OPTIONS_DATABASE_ID=your_funding_options_database_id_here
# =============================================================================
# INSTRUCTIONS:
# =============================================================================
# 1. Copy this file to .env.local
# 2. Replace all "your_*_here" values with your actual credentials
# 3. Never commit .env.local to Git (it's already in .gitignore)
# 4. For Vercel deployment, add these same variables in Vercel Dashboard → Settings → Environment Variables