I am wondering if it is possible to edit source code directly on the server and immediately see changes to the app, or, the next best thing to this in the Clojure workflow would be... ?
I have seen these pages:
- https://devcenter.heroku.com/articles/debugging-clojure
- https://devcenter.heroku.com/articles/getting-started-with-clojure#start-a-repl-on-a-dyno
- Howto hook into a running Heroku Clojure repl
From what I understand, what I want to do cannot be done since Heroku is read-only and you must push a finished git repo to the server to see updates. This was fine when most of my work was in ClojureScript, but now I'm adding databasing server-side and want that same level of instant feedback to source code.
What is the best way to go about this? Am I limited to pushing source code but only testing databasing strategies using the command line REPL outside my source files?