Skip to content

Commit c524108

Browse files
author
薛華慶, james.hsueh
committed
feat: add install.sh
1 parent 830238b commit c524108

File tree

7 files changed

+1003
-279
lines changed

7 files changed

+1003
-279
lines changed

.claude/commands/sdd.md

Lines changed: 0 additions & 254 deletions
This file was deleted.

.gitignore.example

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# SDD Workflow - 建議的 .gitignore 設定
2+
#
3+
# 這個檔案展示在使用 SDD workflow 的專案中,
4+
# 應該如何設定 .gitignore
5+
#
6+
# 使用方式:將需要的規則複製到你的 .gitignore
7+
8+
# === SDD Workflow 生成的檔案 ===
9+
10+
# 驗證報告(通常不需要 commit)
11+
verification/
12+
13+
# 臨時生成的檔案
14+
*.feature.tmp
15+
*_structure.tmp.*
16+
*_impl.tmp.*
17+
18+
# === 根據需求選擇性忽略 ===
19+
20+
# 如果你的 features/ 只是用來生成程式碼,不需要保留
21+
# features/
22+
23+
# 如果 structure/ 只是過渡階段,最終程式碼在別處
24+
# structure/
25+
26+
# 如果 implementation/ 會整合到 src/ 等目錄
27+
# implementation/
28+
29+
# === 建議保留(commit 到 Git)===
30+
31+
# .claude/commands/ → 團隊共用的 SDD 指令
32+
# features/*.feature → 需求規格文檔(BDD spec)
33+
# structure/ → 技術設計文檔
34+
35+
# === Python 專案 ===
36+
__pycache__/
37+
*.py[cod]
38+
*$py.class
39+
*.so
40+
.Python
41+
venv/
42+
env/
43+
.venv
44+
45+
# === TypeScript/JavaScript 專案 ===
46+
node_modules/
47+
dist/
48+
build/
49+
*.tsbuildinfo
50+
51+
# === Go 專案 ===
52+
# 如果使用 Go
53+
# *.exe
54+
# *.test
55+
# *.out
56+
57+
# === 通用 ===
58+
.DS_Store
59+
*.swp
60+
*.swo
61+
.idea/
62+
.vscode/

0 commit comments

Comments
 (0)