You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Monerod GUI is a desktop application for managing a local monero node on a desktop computer. It could be that people would also want to deploy monerod-gui along with monerod on a server on the local network and then they could remote manage it with monerod-gui in the browser.
Describe the solution you'd like
monerod-gui could run in a docker container with a web server that connects to monerod over the docker network or local network.
Describe alternatives you've considered
none
Additional context
That way we could also think adding monerod-gui to monero-suite.
The text was updated successfully, but these errors were encountered:
Hi @hundehausen thanks for opening the issue! This idea falls under the remote management of a node from what I understand. The goal would therefore be to manage a remote node using monerod-gui.
The difficulty in making monerod-gui a deployable application on a web server is that most of the features have been developed having electron as a base, which allows me to interact with the monerod executable in the local file system electron.service.ts . Making monerod-gui deployable on a web server means having to provide an additional support server service that implements all the features currently supported by electron. A code refactory would then be necessary and an abstract api would be available that depending on the environment makes the necessary calls to electron or the support service.
My idea was instead to use the SSH protocol to connect to a remote monerod server and interact with the monerod service/executable, again a refactory and an api will be necessary. In this case, the web server deployment seems to be a less attractive solution, but what do you think?
I like the idea of providing a support service anyway. I'm thinking about creating a MoneroRestServer that uses monero-java to provide wallet and daemon services through a simplified and powerful API.
Is your feature request related to a problem? Please describe.
Monerod GUI is a desktop application for managing a local monero node on a desktop computer. It could be that people would also want to deploy monerod-gui along with monerod on a server on the local network and then they could remote manage it with monerod-gui in the browser.
Describe the solution you'd like
monerod-gui could run in a docker container with a web server that connects to monerod over the docker network or local network.
Describe alternatives you've considered
none
Additional context
That way we could also think adding monerod-gui to monero-suite.
The text was updated successfully, but these errors were encountered: