67 lines
839 B
Plaintext
67 lines
839 B
Plaintext
# =============================================================================
|
|
# AWOOOI - .gitignore
|
|
# =============================================================================
|
|
|
|
# 依賴套件
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
yarn.lock
|
|
package-lock.json
|
|
|
|
# 測試與建置產物
|
|
coverage/
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
.turbo/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
*.so
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# 環境變數與機密 (絕對不能進 Git)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
secrets/
|
|
|
|
# 日誌
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
.pnpm-debug.log*
|
|
*.log
|
|
|
|
# 編輯器設定
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 系統檔案
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Workspace 檔案 (本地使用,不需提交)
|
|
*.code-workspace
|
|
|
|
# Kubernetes 機密
|
|
*-secret.yaml
|
|
*-secrets.yaml
|
|
|
|
# 暫存檔案
|
|
tmp/
|
|
temp/
|
|
*.tmp
|