feat: Oracle Canvas, Revision History and Canvas Sharing (#33)

Co-authored-by: Sagnik <sagnik7896@gmail.com>
Reviewed-on: #33
This commit was merged in pull request #33.
This commit is contained in:
2026-04-23 01:20:21 +05:30
parent e519339cc9
commit 6cdc366718
58 changed files with 3187 additions and 705 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
APP_ROOT=/opt/desineuron-llm-route-sync
SCRIPT_PATH=/usr/local/bin/sync_llm_route.py
VENV_PYTHON="$APP_ROOT/.venv/bin/python"
if [[ ! -x "$VENV_PYTHON" ]]; then
echo "Missing route-sync venv python at $VENV_PYTHON" >&2
exit 1
fi
exec "$VENV_PYTHON" "$SCRIPT_PATH"