feat: Oracle Canvas, Revision History and Canvas Sharing

This commit is contained in:
Sagnik
2026-04-23 01:19:03 +05:30
parent e519339cc9
commit 527b10cd41
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"