-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (37 loc) · 1.73 KB
/
.env.example
File metadata and controls
45 lines (37 loc) · 1.73 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
# ============================================================================
# GitLab 存取設定
# ============================================================================
# GitLab Personal Access Token (必填)
# 建立位置: https://gitlab.com/-/user_settings/personal_access_tokens
# 所需權限: read_api
# 格式範例: glpat-xxxxxxxxxxxxxxxxxxxx
GITLAB_TOKEN=your_personal_access_token_here
# GitLab 伺服器 URL(選用)
# 預設值: https://gitlab.com
# 使用情境: 自架 GitLab 實例或企業版 GitLab
# 範例: https://gitlab.example.com
# 注意: CLI 命令的 --url 或 --host 參數可覆蓋此設定
GITLAB_HOST=https://gitlab.com
# GitLab Token 替代變數名稱(選用)
# 如果您的環境已使用 GITLAB_PERSONAL_ACCESS_TOKEN,無需額外設定 GITLAB_TOKEN
# 優先順序: GITLAB_TOKEN > GITLAB_PERSONAL_ACCESS_TOKEN
# GITLAB_PERSONAL_ACCESS_TOKEN=your_personal_access_token_here
# ============================================================================
# 效能與批次處理設定
# ============================================================================
# MR 時間軸批次分析上限(選用)
# 預設值: 50
# 範圍: 1-100
# 說明: 限制單次 timeline 命令可分析的 MR 數量,避免 API 過載
# MAX_BATCH_SIZE=50
# ============================================================================
# 開發與除錯設定
# ============================================================================
# Node 環境(選用)
# 預設值: production
# 可選值: development, production, test
# 說明: 開發模式會顯示更多除錯訊息
# NODE_ENV=production
# 終端寬度(選用,自動偵測)
# 說明: 用於表格輸出寬度計算,通常不需手動設定
# COLUMNS=80