Files
dekun 9d3571694c Stop tracking local crypto.db files from user edition.
Restore gitignore rules so runtime SQLite databases are not published.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-17 16:31:34 +08:00

42 lines
794 B
Plaintext

# 本地真实配置(含 API 密钥),勿提交
**/.env
.env
license.env
# 允许提交模板
!**/.env.example
!.env.example
!license.env.example
# 许可状态(运行时)
data/license_state.json
data/
# Python
**/__pycache__/
**/*.pyc
**/.venv/
# 本地备份(可选,勿提交)
**/.env.backup*
**/.env.bak
**/.env.local
manual_trading_hub/hub_settings.json
manual_trading_hub/hub_backup_state.json
manual_trading_hub/hub_fund_history.json
manual_trading_hub/hub_supervisor_state.json
manual_trading_hub/hub_ai_summaries.json
manual_trading_hub/hub_ai_chat.json
manual_trading_hub/hub_ai_fund_history.json
manual_trading_hub/data/
backups/
# 加密发布产物与明文备份(勿提交)
dist/
# 数据库与上传(运行时生成)
**/*.sqlite
**/crypto.db
**/*.db