#!/usr/bin/env -S uv run # /// script # requires-python = ">=3.11" # dependencies = [ # "gremlinpython", # "python-dotenv", # "requests", # ] # /// """gremlin_appflowy_bridge.py — DEPRECATED. Use gremlin_lean_report.py instead. The old AppFloyo Cloud REST API (/api/databases) does not exist in self-hosted v0.16.5. The replacement generates Markdown/JSON reports that can be imported into AppFloyo via the UI, or consumed by other automation. See: gremlin_lean_report.py signatures/appflowy_deployment_status.json """ import sys from pathlib import Path ROOT = Path(__file__).resolve().parents[2] sys.path.insert(0, str(ROOT / "shim")) from gremlin_lean_report import main if __name__ == "__main__": main()