Antriksh Agarwal
Antriksh Agarwal
@CiTRuS93 I can try taking a look at it if you'd like ?
So, I got the home server running with Jarvis: @pnhofmann Suggestion needed: Home server application is in the UI, will serve as the UI, but to start it would be...
@CiTRuS93 I think we should be able to start, stop, restart the server while jarvis is already running. Which is what brings me to server start as a plugin, instead...
@CiTRuS93 So, think of it in terms of a microservice all reporting to the same base service. There is just one instance running, which can spawn threads, those threads can...
@pnhofmann Let me know what you think on how you would send a request to start/stop/restart the server.
I was going for the second type! Cool, thanks! Now I can build on it!
So, for the app route directive, I was thinking of something like this: ``` @server_app.route('/plugin/start') def call_plugin(s): return plugin_start(s) ``` where the end points are all made of plugin names,...
@pnhofmann New [branch](https://github.com/MLDaily/Jarvis/tree/restructure) edits on my end. ^ this is what I currently have Not yet been able to make everything an endpoint (working on it). > > where the...
@CiTRuS93 > I don't think that http server will give u all the functionality that u want, maybe we need to add some socket based chat room (like AWS pubsub...
@pnhofmann I looked at the code in your commit. If we change the jarvis main process to the server process, what happens to the base process (cmd line process), shouldn't...