[eric] runner: per-app VM image boots a published bundle from storage and serves backend + frontend from one process (ENG-293)

This commit is contained in:
ciregenz
2026-08-17 13:55:52 -07:00
parent 95f99d8b30
commit b91c7514d7
6 changed files with 151 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""No-op shim: generated workspaces import the desktop's injected debugger; hosted runs have no
debugger to talk to, so every hook is a silent pass-through (call-style and decorator-style)."""
def debug(*args, **kwargs):
if len(args) == 1 and callable(args[0]) and not kwargs:
return args[0]
return None
def log(*args, **kwargs):
return None
def snapshot(*args, **kwargs):
return None