Skip to main content

Command Palette

Search for a command to run...

Dev Log #1

Updated
1 min readView as Markdown

New Here? Check out the About the Project page!

I had the client page served via the flask server that was also the python backend at the start.

This made it quite difficult to figure out what was actually the "server" part and what was the "client" part, and didn't really fit with the client and server system I had in mind.

So, I split the client and server into two separate launchers. This was surprisingly easy, due to the fact that most of everything was already modularized. All I had to do was to make another flask server that only served the client HTML page and delete the original, then basically copy-paste the web socket code I was using for forwarding the client JS logs to the python terminal.

Although I may or may not have accidentally broken the client-server communication in the process... oops.

10 views