2016-07-30 13 views
0

私は非常に基本的なdjangoのWebサイトをherokuに配備しようとしており、常にエラーが発生しています。私はルートディレクトリにProcfile.txtとrequirement.txtファイルを持っていますが、procfileには常にエラーが表示されます。HerokuにdjangoのWebサイトを展開する際に、アプリケーションにProcfileエラーが表示されない

私procfileは次のとおりです。

web: gunicorn mysite.wsgi:application --log-file - 
heroku ps:scale web=1 

私requirements.txtは次のとおりです。

-----> Python app detected 

!  Warning: Your application is missing a Procfile. This file tells Heroku how to run your application. 

!  Learn more: https://devcenter.heroku.com/articles/procfile 

-----> Uninstalling stale dependencies 

     Uninstalling virtualenv-15.0.2: 

     Successfully uninstalled virtualenv-15.0.2 

    $ pip install -r requirements.txt 

     Collecting gunicorn (from -r requirements.txt (line 2)) 

     Downloading gunicorn-19.6.0-py2.py3-none-any.whl (114kB) 

     Installing collected packages: gunicorn 

     Successfully installed gunicorn-19.6.0 

-----> Discovering process types 

     Procfile declares types -> (none) 

-----> Compressing... 

     Done: 41.3M 

-----> Launching... 

     Released v7 

     https://jpthoyo.herokuapp.com/ deployed to Heroku 

この情報は解決策を見つけるのに十分でない場合は、次のビルドログで

Django==1.9.8 
gunicorn 

それから私に教えてください。 ありがとう

答えて

0

ファイルは、Procfile.txtではなくProcfileと呼ばれる必要があります。

+0

はいProcfileとそのtxtファイルの名前 – Ishan

+0

実際のディレクトリ一覧を表示してください。 –

関連する問題