Is it possible to run locally JRuby on Google App Engine without restarting server on every change?
Posted
by elado
on Stack Overflow
See other posts from Stack Overflow
or by elado
Published on 2010-04-15T14:00:43Z
Indexed on
2010/04/15
14:03 UTC
Read the original article
Hit count: 295
Unfortunately, GAE requires restart of the server on each code change. Is it possible to prevent it and have immediate feedback after code save?
Or, can I import Google App Engine's API into my ruby code and run it on Sinatra server? Tried this but it fails on "import com.google.appengine.api" (it doesn't know what 'com' is).
For Sinatra, I use "Rerun" ( http://github.com/alexch/rerun ) which restarts server immediately after a change with minimum wait.
Thanks.
© Stack Overflow or respective owner