Keming
Keming
Since `envd` already supports `expose`, `daemon`, `mount`, I think it can be done in the following way: ```py def tensorboard(): io.mount(src="/var/log/tensorboard", dest="./logs") runtime.daemon(commands=[ ["tensorboard", "--logdir", "./logs", "--port", "8888"], ]), runtime.expose(envd_port=8888,...
Can refer to the discussion about the project name: - https://github.com/tensorchord/envd/issues/2#issuecomment-1119175904
logo draft by @lilylee1874 
 Can you find "ENVD" in this picture?

Can we support `envd up -f ` to build and run the remote envd file?
interactive shell: * https://github.com/charmbracelet/gum
* closed by https://github.com/tensorchord/envd/pull/779
The design of `state` in `bulidkit` looks suitable for method chaining. *Pros* * commands run in order * users can control which parts are run in parallel *Cons* * need...
Is it done though sshd?