リポジトリをherokuマスターにプッシュした後、このエラー([Errno 2]そのようなファイルまたはディレクトリはありません)が発生します。これが私のログです。
2012-04-17T18:24:53+00:00 app[web.1]: python: can't open file '/test/project/manage.py': [Errno 2] No such file or directory
2012-04-17T18:24:54+00:00 heroku[web.1]: Process exited with status 2
2012-04-17T18:24:54+00:00 heroku[web.1]: State changed from starting to crashed
2012-04-17T18:24:54+00:00 heroku[web.1]: State changed from crashed to created
2012-04-17T18:24:54+00:00 heroku[web.1]: State changed from created to starting
2012-04-17T18:24:57+00:00 heroku[web.1]: Starting process with command python /test/project/manage.py runserver 0.0.0.0:4473 --noreload 2012-04-17T18:24:57+00:00 app[web.1]: python: can't open file '/test/project/manage.py': [Errno 2] No such file or directory
私のProcfileは次のようになります。
web: python /test/project/manage.py runserver 0.0.0.0:$PORT --noreload
なぜファイルを開けないのかわかりません。開発サーバーを使用しているときは正常に開きます。何か案は?読んでくれてありがとう。