I'm following the instructions from Carin Meier's How I Start post and having an issue with running a clojure app that does not have a web component.
My Procfile has the suggested:
worker: lein trampoline run
but when I deploy, it says:
remote: -----> Discovering process types
remote: Procfile declares types -> worker
remote: Default types for Clojure (Leiningen 2) -> web
I'm not sure where that last line is coming from. Since my app does not connect to the web at all, it is killed:
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
Stopping process with SIGKILL
If it wasn't clear, I'm a n00b to Heroku...what am I missing? How do I remove the Default types for Clojure (Leiningen 2) -> web
setting and the expectation that I'll bind to $PORT
?