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
I'm trying to build code, and I'm having troubles trying to use it with python server.
To built and start web and server instances, I followed instructions from documentation (and did not built a standalone executable)
Once server started (with python server.py), I have access to the web page at http://localhost:9999/ but the process step does not work and I'm guessing it is because no server is found.
Moreover, once server starts, it directly opens http://localhost:41692/?wsServer=ws://localhost:41692/ws . The front of this page is not the same than the one at http://localhost:9999/ and here, I can run the process step.
How can I make the server works with the built webapp ?
Thanks,
The text was updated successfully, but these errors were encountered:
If you are setting things up for development purposes (e.g. making changes to both client and server), then here are some steps to make things easier. I will add something to make this more streamlined, since setting this project up for development still requires some manual changes.
In server.py, comment out line 58 and hardcode a port (e.g. 9998) in line 41. This will make sure the server runs on the same port every time you run server.py. We use port 9998 since npm run dev for the webapp will default run on 9999. Then, you can access both your dev build of the webapp at http://localhost:9999/?wsServer=ws://localhost:9998/ws.
Let me know if the above needs clarifying. I'll eventually work on making that process more streamlined, but right now it does require modifying some code.
Hi,
I'm trying to build code, and I'm having troubles trying to use it with python server.
To built and start web and server instances, I followed instructions from documentation (and did not built a standalone executable)
Once server started (with
python server.py
), I have access to the web page at http://localhost:9999/ but the process step does not work and I'm guessing it is because no server is found.Moreover, once server starts, it directly opens http://localhost:41692/?wsServer=ws://localhost:41692/ws . The front of this page is not the same than the one at http://localhost:9999/ and here, I can run the process step.
How can I make the server works with the built webapp ?
Thanks,
The text was updated successfully, but these errors were encountered: