-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
86 lines (69 loc) · 2.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Prompt
BOB_PROMT="your_prompt_here"
# Slack Personal
PERSONAL_COOKIE="your_cookie_here"
PERSONAL_TOKEN="xoxc-your-personal-token"
# Slack Workspace
PROD_CHANNEL="your_prod_channel_id"
TEST_CHANNEL="your_test_channel_id"
# Slack Token
SLACK_ADMIN_MEMBER_ID="your_admin_member_id"
SLACK_BOT_TOKEN="xoxb-your-bot-token"
SLACK_SIGNING_SECRET="your_signing_secret"
SLACK_USER_TOKEN="xoxp-your-user-token"
SLACK_BOT_HR_TOKEN="xoxb-your-hr-bot-token"
SLACK_HR_SIGNING_SECRET="your_hr_signing_secret"
# Confluence
CF_DOMAIN="your.atlassian.net"
CF_PARENTPAGEID="your_parent_page_id"
CF_SPACEID="your_space_id"
CF_TEMPLATEPAGEID="your_template_page_id"
CF_TOKEN="your_confluence_token"
# Axiom
AXIOM_DATASET="your_dataset_name"
AXIOM_TOKEN="your_axiom_token"
# Supabase
SUPABASE_SERVICE_ROLE_KEY="your_service_role_key"
NEXT_PUBLIC_SUPABASE_ANON_KEY="your_anon_key"
NEXT_PUBLIC_SUPABASE_URL="your_supabase_url"
# OpenAI
OPENAI_API_KEY="your_openai_api_key"
OPENAI_API_URL="your_openai_api_url"
# Cloudflare R2
R2_ACCESS_KEY_ID="your_r2_access_key_id"
R2_ACCOUNT_ID="your_r2_account_id"
R2_BUCKET_NAME="your_bucket_name"
R2_SECRET_KEY_ID="your_r2_secret_key_id"
# Upstash Kafka
UPSTASH_KAFKA_REST_PASSWORD="your_kafka_password"
UPSTASH_KAFKA_REST_URL="your_kafka_rest_url"
UPSTASH_KAFKA_REST_USERNAME="your_kafka_username"
UPSTASH_REDIS_REST_TOKEN="your_redis_rest_token"
UPSTASH_REDIS_REST_URL="your_redis_rest_url"
# Upstash Redis
REDIS_URL="your_redis_url"
# Upstash QStash
QSTASH_CURRENT_SIGNING_KEY="your_current_signing_key"
QSTASH_NEXT_SIGNING_KEY="your_next_signing_key"
QSTASH_TOKEN="your_qstash_token"
# Timezone
TZ=Asia/Shanghai
# Database Configuration
POSTGRES_HOST=your_host
POSTGRES_PORT=5432
POSTGRES_USER=your_username
POSTGRES_PASSWORD=your_password
POSTGRES_DATABASE=your_database_name
# Feature Flags
USE_TYPEORM=true
# Environment
NODE_ENV=development
NEXT_PUBLIC_BASE_URL=http://localhost:3000
# MaxKB
MAXKB_BASE_URL=your_maxkb_base_url
MAXKB_API_KEY=your_maxkb_api_key
# Redshift Configuration
REDSHIFT_HOST=your_host
REDSHIFT_USERNAME=your_username
REDSHIFT_PASSWORD=your_password
REDSHIFT_PORT=5439