Repository: https://github.com/AgentSeal/codeburn
By default, codeburn web only listens on 127.0.0.1, which makes the dashboard inaccessible from outside the sandbox. Using socat, you can forward the port to 0.0.0.0 and then expose it through sbx.
codeburn web --no-open --port 4747sudo apt-get update
sudo apt-get install -y socatsocat TCP-LISTEN:4748,bind=0.0.0.0,reuseaddr,fork TCP:127.0.0.1:4747On the host machine, run:
sbx ports <sandbox-name> --publish 4747:4748Replace <sandbox-name> with the name of your running sandbox.
In your browser, navigate to:
http://127.0.0.1:4747
The additional TCP proxy is required because codeburn web currently binds only to 127.0.0.1 and does not provide an option to listen on 0.0.0.0.