Rails run on Cloud9 without any problem. What I want to do is as follows:
- run Rails on Heroku
- run python program by rake task in Rails (especially python for access AWS s3 by boto to get some.)
current condition is as follows:
- Case 1: deployed rails to heroku without any changing. The deploy could be success and there is no problem to run rails app via Web browser. but rails server shows error log (by heroku log --tail )
an error shows "No module named boto"
Case 2: deployed rails to heroku file named requirements.txt on root. Heroku didn't detect it as Ruby Rails app so that rails server didn't run. rails server shows error log (by heroku log --tail ) as heroku[router]: at=error code=H14 desc="No web processes running"
Case 3: deployed rails first as same as case 1. Then, add Python on Buildpacks on Heroku setting, then add requirements.txt, finally deploy again. then it's deployed. but rails server shows error log (by heroku log --tail ) as same as Case3.
if I could run command like pip, it will be easy, but it's impossible. is there any idea to solve the above?