- .gitignore에 node_modules/ 추가 - git rm --cached로 3000+ node_modules 파일 추적 제거 - 이후 Gitea push 크기 정상화, 자동 배포 정상화 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
55 lines
444 B
Plaintext
55 lines
444 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Claude Code local settings
|
|
.claude/settings.local.json
|
|
|
|
# Secrets
|
|
secrets/
|
|
*.pem
|
|
*.key
|
|
*.crt
|