- Add wmill.yaml configuration with includes for f/**, u/**, g/** - Add sync_to_git.sh script for automatic Git synchronization - Add initial workflows synced from Windmill: - Test script: u/antigravity/test_git_sync - Admin scripts: u/admin/hub_sync - Setup app: g/all/setup_app - Folders: f/app_custom, f/app_groups, f/app_themes
45 lines
592 B
Plaintext
45 lines
592 B
Plaintext
# Docker volumes and data
|
|
windmill_*/
|
|
db_data/
|
|
caddy_data/
|
|
|
|
# Environment variables (contains sensitive information)
|
|
# .env
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*~
|
|
|
|
# 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
|