2 Commits

Author SHA1 Message Date
Akira
53f84e2647 スクリーンショットを確認しました。
test_git_sync.py
 に IndentationError(インデントエラー) があります。ファイルを確認します。

Analyzed
test_git_sync.py#L1-4
3行目の return のインデントが print より深くなっています。修正します。

Edited
test_git_sync.py
+1
-2
修正しました。return のインデントが print と揃っていなかったのが原因です。

ローカルからGiteaにプッシュして、サーバー側で git pull した後、Windmill上で再度テストを実行してみてください:

bash
git add .
git commit -m "Fix indentation in test_git_sync.py"
git push origin main
その後、サーバーのコンテナ内(またはホスト側)で再度 wmill sync push するか、Windmill UIから直接スクリプトを編集しても大丈夫です。
2026-02-19 15:45:18 +09:00
Akira
da60b92a64 Add Windmill workflows and Git auto-sync
- 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
2026-02-11 21:59:55 +09:00