-
Notifications
You must be signed in to change notification settings - Fork 66
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 Code during Development #87
Comments
Django's autoreload module may give an idea. Apparently they borrowed most of it from CherryPy. https://github.com/django/django/blob/master/django/utils/autoreload.py and here's CherryPy's autoreloader: |
Got it! Reading the code now. Will take a shot at this. |
Sweet. I have a basic implementation working! Will start cleaning it up. One issue: since Brubeck apps are invoked directly, while Django apps rely on Thanks for your patience! I'm new to this. |
I like the idea of a parameter, so I can define a debug var and the app launches in auto-reload, no debug var and it runs without it. |
Well, there is an option in werkzeug to do this, currently I am working on On Mon, Oct 29, 2012 at 10:09 PM, Paul Eipper [email protected]:
Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds |
@DavidYKay did you ever complete this implementation? I'm interested in auto-reload as well as I use it a bunch in nodejs development with the node-dev module. |
The one thing that I'm missing from Django is the ability to leave a Brubeck Python app up and let it reload the source code automatically as I'm writing it.
What do we need to do to implement this? Would be happy to dive into this, but I'm not sure where to start. Thanks!
The text was updated successfully, but these errors were encountered: