commit-report-tool/configs/repos/your-repo.yml
2026-04-03 19:31:32 +09:00

43 lines
1.4 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ============================================================
# リポジトリ構造定義
# あなたのリポジトリに合わせて書き換えてください
# ============================================================
repository:
owner: your-username # ← あなたの GitHub ユーザー名(または Organization 名)
name: your-web-app # ← 監視したいリポジトリ名
# リポジトリ内のアプリ/ディレクトリを定義
# モレポでない場合は1つだけ定義すればOK
apps:
- id: frontend # 一意のIDプロジェクト設定から参照する
path: "src/" # ← コミットを分類するディレクトリパス
name: "Webサイト" # ← レポートに表示される名前(自分のアプリ名に変更)
short_name: "Web" # ← タグに表示される短縮名
icon: "globe" # Lucide アイコン名
color: "blue" # Tailwind CSS の色名
category: "main"
- id: api
path: "api/"
name: "APIサーバー"
short_name: "API"
icon: "database"
color: "emerald"
category: "main"
# 不要なアプリ定義は削除してください
- id: docs
path: "docs/"
name: "ドキュメント"
short_name: "Docs"
icon: "book-open"
color: "purple"
category: "docs"
categories:
main:
name: "メインアプリ"
docs:
name: "ドキュメント"