cfpb / grasshopper-parser

Address Parsing REST API
Creative Commons Zero v1.0 Universal
8 stars 8 forks source link

Is there a way to run this app on Heroku? #22

Open jeancarlozapata opened 9 years ago

jeancarlozapata commented 9 years ago

Hi everyone!

I've been trying to run this application on Heroku but with no success. Heroku apps need a Procfile with a web process to start. I've been trying with many forms, similar to this:

web: gunicorn -b "0.0.0.0:$PORT" -w 2 app:app --log-file -

but it's not working. Couldn't make it work with the conf/gunicorn.py file as recommended in the README, either.

Have you ever had this app running on Heroku?

Thanks in advance, any help is appreciated :)

jmarin commented 9 years ago

Hi @jeancarlozapata, thanks for your interest in the project. We haven't attempted running the application in Heroku, and are not aware of anyone that has. What kind of errors are you getting?Doing a bit of googling I found the following from Heroku, which might be of help

https://devcenter.heroku.com/articles/python-gunicorn

Good luck, and please let us know how it goes.

Thanks

jeancarlozapata commented 9 years ago

Thanks for answering! I found that page too, but the procedure/recommendations there didn't work for me either.

I'll try a couple more things over the weekend and will let everyone know if I can make it work.

Thank you for your help @jmarin