forked from adhit-r/aran-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (28 loc) · 719 Bytes
/
Copy pathenv.example
File metadata and controls
35 lines (28 loc) · 719 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
# Server Configuration
ENV=development
SERVER_PORT=8080
READ_TIMEOUT=30
WRITE_TIMEOUT=30
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=password
DB_NAME=aran_mcp
DB_SSL_MODE=disable
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-change-in-production
JWT_ACCESS_EXPIRY=15
JWT_REFRESH_EXPIRY=168
# Logging Configuration
LOG_LEVEL=debug
# Security Configuration
RATE_LIMIT=100
ENABLE_HTTPS=false
# Frontend Configuration
NEXT_PUBLIC_API_URL=http://localhost:8081/api/v1
# Clerk Authentication
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_your-clerk-publishable-key-here
CLERK_SECRET_KEY=sk_test_your-clerk-secret-key-here
# MCP Server Configuration
MCP_SERVER_PORT=3001