-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
39 lines (30 loc) · 910 Bytes
/
env.example
File metadata and controls
39 lines (30 loc) · 910 Bytes
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
# Server Configuration
NODE_ENV=development
PORT=3000
HOST=0.0.0.0
LOG_LEVEL=info
# Database
MONGODB_URI=mongodb://localhost:27017/plotter-api
MONGODB_TEST_URI=mongodb://localhost:27017/plotter-api-test
# Redis
REDIS_URL=redis://localhost:6379
# Clerk Authentication
CLERK_PUBLISHABLE_KEY=pk_test_your-clerk-publishable-key
CLERK_SECRET_KEY=sk_test_your-clerk-secret-key
CLERK_PEM_PUBLIC_KEY=your-clerk-pem-public-key
# SendGrid Email (Optional)
SENDGRID_API_KEY=your-sendgrid-api-key
FROM_EMAIL=noreply@yourapp.com
# Twilio SMS (Optional)
TWILIO_ACCOUNT_SID=your-twilio-account-sid
TWILIO_AUTH_TOKEN=your-twilio-auth-token
TWILIO_PHONE_NUMBER=+1234567890
# Frontend URL
FRONTEND_URL=http://localhost:4000
# MCP (Model Context Protocol)
MCP_SERVER_URL=http://localhost:3000/mcp
# Rate Limiting
RATE_LIMIT_MAX=100
RATE_LIMIT_WINDOW=60000
# CORS
CORS_ORIGIN=http://localhost:3000,http://localhost:19006