-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (37 loc) · 1.96 KB
/
Copy path.env.example
File metadata and controls
44 lines (37 loc) · 1.96 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
39
40
41
42
43
44
# Environment
NODE_ENV=development
# =============================================================================
# SUPABASE CONFIGURATION - DUAL CLIENT ARCHITECTURE
# =============================================================================
# This app uses TWO Supabase projects:
# 1. AUTH project: Shared authentication across all Beton apps
# 2. DATA project: App-specific database (trolley migrations data)
# AUTHENTICATION PROJECT (Shared across all apps)
# Development: Uses beton-test (egmmuxzfmbnfivxlqsyi)
# Production: Uses beton-auth (uezyvflphqcizcbfklla) - set in Vercel
NEXT_PUBLIC_SUPABASE_AUTH_URL=https://egmmuxzfmbnfivxlqsyi.supabase.co
NEXT_PUBLIC_SUPABASE_AUTH_ANON_KEY=your-test-auth-anon-key
SUPABASE_AUTH_SERVICE_ROLE_KEY=your-test-auth-service-role-key
# DATA PROJECT (App-specific database)
# Development: Uses beton-test (egmmuxzfmbnfivxlqsyi) - same as auth for dev
# Production: Uses beton-trolley (nuxwbqovsllgceswaxgf) - set in Vercel
NEXT_PUBLIC_SUPABASE_DATA_URL=https://egmmuxzfmbnfivxlqsyi.supabase.co
NEXT_PUBLIC_SUPABASE_DATA_ANON_KEY=your-test-data-anon-key
SUPABASE_DATA_SERVICE_ROLE_KEY=your-test-data-service-role-key
# LEGACY VARIABLES (Backward compatibility - points to DATA project)
NEXT_PUBLIC_SUPABASE_URL=https://egmmuxzfmbnfivxlqsyi.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-test-data-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-test-data-service-role-key
# =============================================================================
# APPLICATION CONFIGURATION
# =============================================================================
NEXT_PUBLIC_APP_URL=http://localhost:3000
# External API credentials collected during onboarding
TWENTY_BASE_URL=https://your-team.twenty.com
TWENTY_API_TOKEN=your_twenty_api_token
TOOL_TOKEN=your_tool_service_token
ATTIO_API_TOKEN=your_attio_api_token
# Optional notification + telemetry hooks
NOTIFICATION_WEBHOOK_URL=https://example.com/webhooks/attio-migration
LOG_LEVEL=info
RATE_LIMIT_WINDOW_MS=1000