-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
71 lines (59 loc) · 2.79 KB
/
Copy path.env.example
File metadata and controls
71 lines (59 loc) · 2.79 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# VectorOS Environment Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# DATABASE (Neon PostgreSQL)
# =============================================================================
# Get from: https://console.neon.tech
# Format: postgresql://user:password@host/database?sslmode=require
DATABASE_URL="postgresql://username:password@host.neon.tech/database?sslmode=require"
# =============================================================================
# AI PROVIDER (Anthropic Claude)
# =============================================================================
# Get from: https://console.anthropic.com/settings/keys
# Create a new API key and paste it here
ANTHROPIC_API_KEY="sk-ant-api03-..."
# =============================================================================
# AUTHENTICATION (Clerk)
# =============================================================================
# Get from: https://dashboard.clerk.com
# Select your application → API Keys
CLERK_SECRET_KEY="sk_test_..."
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="pk_test_..."
# Clerk redirect URLs (default values, change if needed)
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in"
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up"
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL="/onboarding"
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL="/onboarding"
# =============================================================================
# API CONFIGURATION
# =============================================================================
# Development (default)
NEXT_PUBLIC_API_URL="http://localhost:3001"
AI_CORE_URL="http://localhost:8000"
# Production (uncomment and update with your deployed URLs)
# NEXT_PUBLIC_API_URL="https://your-backend.railway.app"
# AI_CORE_URL="https://your-ai-core.railway.app"
# =============================================================================
# MONITORING & ERROR TRACKING
# =============================================================================
# Sentry for error tracking (get from: https://sentry.io)
# Create a new project, copy the DSN, and paste here
# Tracks errors in backend, AI core, and autonomous worker
SENTRY_DSN=""
# Email notifications (optional - for future implementation)
# SENDGRID_API_KEY=""
# NOTIFICATION_EMAIL=""
# Slack webhooks (optional - for future implementation)
# SLACK_WEBHOOK_URL=""
# Gmail OAuth (optional - for future email integration)
# GMAIL_CLIENT_ID=""
# GMAIL_CLIENT_SECRET=""
# =============================================================================
# DEPLOYMENT SETTINGS
# =============================================================================
# Node environment (development or production)
NODE_ENV="development"
# Port configuration (usually set by hosting platform)
# PORT=3001
# AI_CORE_PORT=8000
# FRONTEND_PORT=3000