6th
This commit is contained in:
32
.gitignore
vendored
32
.gitignore
vendored
@@ -1,6 +1,3 @@
|
||||
# --- 敏感資訊 (Sensitive Information) ---
|
||||
# 忽略包含所有密鑰和資料庫連線資訊的環境變數檔案。
|
||||
|
||||
# --- Python 相關 (Python Related) ---
|
||||
# 忽略虛擬環境目錄。
|
||||
.venv/
|
||||
@@ -29,7 +26,6 @@ node_modules/
|
||||
.next/
|
||||
.swc/
|
||||
|
||||
|
||||
# --- 作業系統相關 (Operating System) ---
|
||||
# 忽略 macOS 的系統檔案。
|
||||
.DS_Store
|
||||
@@ -42,4 +38,32 @@ Thumbs.db
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# --- 臨時文件 ---
|
||||
nul
|
||||
temp/
|
||||
tmp/
|
||||
|
||||
# --- 測試相關 ---
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
coverage.xml
|
||||
htmlcov/
|
||||
|
||||
# --- 資料庫相關 ---
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# --- 前端相關 ---
|
||||
.next/
|
||||
out/
|
||||
build/
|
||||
dist/
|
||||
*.tsbuildinfo
|
||||
.eslintcache
|
||||
|
||||
# 注意:根據需求,我們允許 .env 文件上傳(因為是私有倉庫)
|
||||
# 如果這是公開倉庫,請取消以下注釋:
|
||||
# .env
|
||||
# .env.local
|
||||
# .env.production
|
Reference in New Issue
Block a user