-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.env.example
70 lines (55 loc) · 1.73 KB
/
.env.example
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
# Node environment: development, test, or production
NODE_ENV=development
# Log level: error, warn, info, http, verbose, debug, silly
LOG_LEVEL=info
# Sentry DSN for error tracking (optional)
SENTRY_DSN=
# Port number for the server to listen on
PORT=3000
# Database configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=your_database_name
DB_USER=your_database_user
DB_PASSWORD=your_database_password
# Google OAuth credentials
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
# JWT secret key for authentication
JWT_SECRET=your-secret-key
# Application URL
APP_URL=http://localhost:3000
# Whether to enforce subscriptions (true/false)
ENFORCE_SUBSCRIPTIONS=true
# ClickHouse configuration
CLICKHOUSE_HOST=http://localhost:8123
CLICKHOUSE_PORT=9000
CLICKHOUSE_DATBASE_NAME=default
CLICKHOUSE_USER=default
CLICKHOUSE_PASSWORD=
# Event queue configuration
EVENT_QUEUE_TYPE=memory
KAFKA_BROKERS=localhost:9092
KAFKA_CLIENT_ID=my-app
KAFKA_GROUP_ID=my-app-group
KAFKA_USERNAME=your_kafka_username
KAFKA_PASSWORD=your_kafka_password
KAFKA_USE_SSL=false
KAFKA_BOOTSTRAP_ENDPOINT=localhost:9092
KAFKA_TOPIC=events
# Redis configuration
REDIS_URL=redis://localhost:6379
# Anthropic API configuration
ANTHROPIC_API_KEY=your_anthropic_api_key
# Temporal configuration
TEMPORAL_ADDRESS=localhost:7233
TEMPORAL_NAMESPACE=default
TEMPORAL_TASK_QUEUE=default
# Temporal Cloud configuration (for non-development environments)
TEMPORAL_CLOUD_SERVER_URL=your_temporal_cloud_server_url
TEMPORAL_CLOUD_NAMESPACE=your_temporal_cloud_namespace
TEMPORAL_CLOUD_API_KEY=your_temporal_cloud_api_key
# Stripe configuration
STRIPE_SECRET_KEY=your_stripe_secret_key
STRIPE_WEBHOOK_SECRET=your_stripe_webhook_secret
STRIPE_PRICE_ID=your_stripe_price_id