mirror of
https://github.com/henry4682/linebot_finance.git
synced 2026-05-16 04:41:52 +00:00
20 lines
318 B
Plaintext
20 lines
318 B
Plaintext
# 排除環境變數與 Git 資訊
|
|
.env
|
|
.git
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# 排除 Python 暫存與虛擬環境
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
.python-version
|
|
|
|
# 排除肥大的 Firefox 資料與 Playwright 暫存
|
|
app/line_user_data_firefox/
|
|
app/.cache/
|
|
|
|
# 排除說明文件與部署腳本
|
|
structure.txt
|
|
README.md
|
|
deploy.yaml |