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
Currently, the Python script (main.py) needs to be restarted manually to reflect changes in the code. This disrupts the development workflow and slows down iteration.
Proposed Solution
Set up a mechanism to enable real-time reloading of the script when code changes are detected. Possible approaches include:
Using a file-watching library like watchdog to monitor and reload the script.
Configuring an auto-reload feature in the development environment (e.g., VS Code debug configuration with autoReload).
Exploring third-party tools or hot-reloading frameworks.
Additional Note
If a similar mechanism is already implemented, this issue can be closed after confirming the setup and updating the relevant documentation.
The text was updated successfully, but these errors were encountered:
I was trying to work on issue #377 but I noticed that to see the changes in the UI, I had to rerun the script repeatedly. I think it would be a great improvement to implement real-time responses, allowing changes to reflect instantly.
Current Behaviour
Currently, the Python script (
main.py
) needs to be restarted manually to reflect changes in the code. This disrupts the development workflow and slows down iteration.Proposed Solution
Set up a mechanism to enable real-time reloading of the script when code changes are detected. Possible approaches include:
watchdog
to monitor and reload the script.autoReload
).Additional Note
If a similar mechanism is already implemented, this issue can be closed after confirming the setup and updating the relevant documentation.
The text was updated successfully, but these errors were encountered: