feat: add .gitignore to exclude common files, environments, and project-specific directories

This commit is contained in:
xucheng 2026-01-04 11:04:26 +08:00
parent 61d51a7218
commit cba066c155
2 changed files with 33 additions and 0 deletions

5
.agent/rules/language.md Normal file
View File

@ -0,0 +1,5 @@
---
trigger: always_on
---
用中文回答

28
.gitignore vendored Normal file
View File

@ -0,0 +1,28 @@
# Python
__pycache__/
*.py[cod]
*$py.class
# Environments
.env
.venv/
venv/
ENV/
env/
# IDEs
.vscode/
.idea/
# Database
*.db
*.sqlite3
stock_analysis.db
# OS
.DS_Store
# Project specific
data/
reports/
logs/