Files
cmautobuy/.gitignore
T

55 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 本地数据:数据库、日志、截图、控件树 XML、上传的 Excel
# 位置和用途见 docs/client/03-data-model.md §2.1 和 docs/admin/02-architecture.md §6
client/data/
admin/data/
data/
# 打包产物
build/
dist/
*.spec
client/.build-venv/
client/release/
admin/admin.exe
admin/admin
admin/admin-dev.exe
admin/tmp/
# Excel 打开时生成的锁文件
~$*.xlsx
~$*.xls
# 蝦皮原始报表:含逐商品台币销售额等商业数据,不进 Git
# 需要样本时找项目负责人要,放到 raw_data/ 下
# 自动化测试用 admin/testdata/ 下已脱敏的小样本
raw_data/
# 本机配置:含顺运宝等外部系统的账号密码,明文保存,绝不进 Git。
# 一旦提交,密码会永久留在 git 历史里,很难清干净。
# 模板见 admin/config.example.yaml(那份不含真实凭据,是进 Git 的)。
# 这个文件也不要随打包产物发给别人。
admin/config.yaml
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
# 跑 demo 脚本时在当前目录生成的调试产物
# (src/demo1/auto_v1.py 会写这些,不要提交)
/*.xml
/*.png
client/*.xml
client/*.png
# 编辑器
.vscode/
.idea/
*.swp
# Windows
Thumbs.db
Desktop.ini