I was following http://static.springsource.org/sprin…ference:heroku.
I have a .gitignore at the root of the directories for my project with
And in IDEA, I use their git ignore button and added lots of others, but that didn't work for git. But that is a git question. I am really more concerned about my app running "on my machine" build and app, but not on Heroku.
Update: Well, now it looks like it is deployed but not working, now I just get heroku's generic error page,
Code:
Application Error
An error occurred in the application and your page could not be served. Please try again in a few moments.
If you are the application owner, check your logs for details.
But in my console there isn't any errors, like I got before.
Code:
-----> Discovering process types
Procfile declares types -> (none)
-----> Compiled slug size is 38.1MB
-----> Launching... done, v5
http://eventgate.herokuapp.com deployed to Heroku
and running heroku logs shows
Code:
2012-07-31T14:29:33+00:00 heroku[web.1]: State changed from starting to down
2012-07-31T14:29:33+00:00 heroku[slugc]: Slug compilation finished
2012-07-31T14:31:22+00:00 heroku[router]: Error H14 (No web processes running) -> GET eventgate.herokuapp.com/ dyno= queue= wait= service= status=503 bytes=
So I guess something failed, but you can't see anywhere where that might be.
Thanks
Mark