Feature Request
Add expose button to the services deployed by the module. It should expose the port and redirect to the page itself if err is not nil.
Something like this:
const [port, err] = handleExpose();
if (err !== undefined) {
notification(err)
} else {
window.location.href = `http://localhost:${port}`;
}