-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
59 lines (49 loc) · 1.4 KB
/
.env.example
File metadata and controls
59 lines (49 loc) · 1.4 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
# ======================
# AWS Configuration
# ======================
# AWS region for DynamoDB, Cognito, and other services
AWS_REGION=us-east-1
# AWS account ID for resource ARNs
AWS_ACCOUNT_ID=
# DynamoDB table configuration
DYNAMODB_TABLE_PREFIX=wellab
DYNAMODB_PUBLICATIONS_TABLE=wellab-publications
DYNAMODB_PROJECTS_TABLE=wellab-projects
# ======================
# Auth (Cognito)
# ======================
# Cognito User Pool ID from AWS Console
COGNITO_USER_POOL_ID=
COGNITO_CLIENT_ID=
# JWT secret for local token signing (min 32 characters)
JWT_SECRET=YOUR_KEY_HERE
# Session secret for express-session (min 32 characters)
SESSION_SECRET=YOUR_KEY_HERE
# ======================
# API Configuration
# ======================
# Backend API port and base URL
API_PORT=3001
API_BASE_URL=http://localhost:3001
# CORS allowed origin (frontend URL)
CORS_ORIGIN=http://localhost:5173
# Logging level: debug, info, warn, error
LOG_LEVEL=info
# Claude API key from Anthropic (https://console.anthropic.com)
ANTHROPIC_API_KEY=YOUR_KEY_HERE
# ======================
# Frontend
# ======================
VITE_API_BASE_URL=http://localhost:3001
VITE_COGNITO_USER_POOL_ID=
VITE_COGNITO_CLIENT_ID=
# ======================
# ML Service
# ======================
# Python ML API port and base URL
ML_API_PORT=8000
ML_API_BASE_URL=http://localhost:8000
# ======================
# Environment
# ======================
NODE_ENV=development