Heroku で WordPress ブログを作成しています。サイトをローカルで実行foreman start
しようとすると、Procfile が見つからないというエラーが表示されます。私は Python Web アプリケーション用の Procfiles を作成しましたが、PHP には慣れていません。WordPress アプリの Procfile には何を入れる必要がありますか? どうもありがとう。
1 に答える
Assuming you are using the default PHP buildpack, the default Procfile would look like this:
web: sh boot.sh
You can figure this out from any buildpack by looking at the default_process_types
entry (if defined) in bin/release
.
I should note that this assumes that bin/compile
has been executed (just like the buildpack would do when pushing to Heroku) prior to running the Procfile. The PHP buildpack is a bit of a special case because boot.sh
gets generated in bin/compile
, so you need to make sure you actually have a boot.sh
on your local machine too that launches Apache and PHP.