Auto Reload actions on editing
See original GitHub issueAuto reloading actions server on edit:
Currently, every time I edit the actions file I have to stop the rasa actions
server and restart it. It is kind of overkill since you already built your model and just tweaking with actions.
Overview of the Solution:
Sanic server comes with a DEBUG
mode. We can incorporate it into rasa run actions
command as an option to enable reloading server.
Definition of Done: What needs to be there to consider this feature as done?
- Tests are added
- Feature is documented
-
rasa run actions --debug
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (9 by maintainers)
Top Results From Across the Web
Auto-Reload Action (XWiki.org)
Description. This extension allows to check for new versions to a page and reload it when it has changed.
Read more >auto reload browser when editing templates/css : r/flask - Reddit
Everytime I edit a .html template or my .css files, I want the browser window to refresh automatically and show the changes immediately....
Read more >How to "auto reload" file after external changes
Just purchased PhpStorm (coming from vs code) and i'm running into a pretty annoying issue. On a project i have a webpack setup...
Read more >Auto refresh a page after editing & saving in lightning ...
In your Helper method, you have $A.get('e.force:refreshView').fire(); taking place after the $A.enqueue() method, which effectively means ...
Read more >Auto-reloading a file in VIM as soon as it changes on disk
This enables a file open in vim to be edited using another application and saved. Upon returning to vim, as long as you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
yes,
sanic
already has this build in, so we should reuse it’s hot reload functionality. not sure if we run into issues though, e.g. https://github.com/huge-success/sanic/issues/1248@tmbo so it is possible then? In that case @bhavaniravi are you still interested in implementing this functionality?