This commit is contained in:
beabigegg
2025-09-01 16:42:41 +08:00
parent 22a231d78c
commit 00061adeb7
23 changed files with 858 additions and 3584 deletions

32
.gitignore vendored
View File

@@ -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