-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auto reload LocalDevServer on module change #316
Comments
We're using BaseHTTPServer. It should be possible to implement a reloader, not sure on how easy it would be, but I think it would be useful to have. Marking as feature request. |
+1. It's easy to look for changed files using However I'm not sure of how to reload the application itself when we detect that a file changed. Just re-import everything? |
wish I wasnt a python newb and could have helped with this :/ |
+1 |
+1 |
While waiting for the feature, you can use watchmedo \
auto-restart \
--patterns="*.py" \
--ignore-directories \
--recursive \
-- chalice local Or other equivalents 😁 . |
@marcmillien Alas watchmedo auto-restart doesn't work on Windows... |
+1, would love to have this. |
+1 |
Implemented in #846. This will go out in the next release. |
Hello guys! Love the work on Chalice, makes life with API Gateway much easier.
What framework do you use for the LocalDevServer? Currently it does not auto reload on a change (save) of a module under development, which slows down development quite a bit.
Are you using bare BaseHTTPServer only? Is it easy to implement a reloader?
The text was updated successfully, but these errors were encountered: