2

Heroku で WordPress ブログを作成しています。サイトをローカルで実行foreman startしようとすると、Procfile が見つからないというエラーが表示されます。私は Python Web アプリケーション用の Procfiles を作成しましたが、PHP には慣れていません。WordPress アプリの Procfile には何を入れる必要がありますか? どうもありがとう。

4

1 に答える 1

4

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.

于 2013-02-28T02:17:58.087 に答える