u/ と workflows/f,u,g/ はsyncブランチがgit_syncで管理するため mainブランチのローカル作業ディレクトリでは追跡しない Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
60 lines
872 B
Plaintext
60 lines
872 B
Plaintext
# Docker volumes and data
|
|
windmill_*/
|
|
db_data/
|
|
caddy_data/
|
|
worker_logs/
|
|
|
|
# Environment variables (contains sensitive information)
|
|
# .env
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*~
|
|
|
|
# MCP server config (contains API tokens)
|
|
.mcp.json
|
|
|
|
# Resolved markdown files (generated by editor)
|
|
*.resolved
|
|
*.resolved.*
|
|
|
|
# Windmill workflows - exclude cache and temp files
|
|
workflows/.wmill/
|
|
|
|
# Windmill workflows directory
|
|
workflows/.wmill/cache/
|
|
workflows/.wmill/tmp/
|
|
|
|
# But track the actual workflows
|
|
!workflows/f/
|
|
!workflows/u/
|
|
!workflows/g/
|
|
!workflows/wmill.yaml
|
|
!workflows/wmill-lock.yaml
|
|
__pycache__/
|
|
|
|
# Windmill workflow definitions (managed by git_sync on sync branch)
|
|
# Local working directory should not track these on main
|
|
u/
|
|
workflows/f/
|
|
workflows/u/
|
|
workflows/g/
|