diff --git a/docs/src/shared/procfile.md b/docs/src/shared/procfile.md index 9f1950a..90d39b0 100644 --- a/docs/src/shared/procfile.md +++ b/docs/src/shared/procfile.md @@ -4,10 +4,10 @@ Most buildpacks rely on existing community standards to allow you to configure y The `Procfile` is a configuration file format that was [introduced by Heroku in 2011](https://devcenter.heroku.com/articles/procfile), you can now use this behavior on your CNB-powered application via the `heroku/procfile`, which like the rest of the buildpacks in our builder [is open source](https://github.com/heroku/buildpacks-procfile). The `heroku/procfile` buildpack allows you to configure your web startup process. -This is the `Procfile` of the getting started guide: +This is the `web` entry in the getting started guide's `Procfile`: ``` -:::-> $ cat Procfile +:::-> $ cat Procfile | grep "^web" ``` By including this file and using `heroku/procfile` buildpack, your application will receive a default web process. You can configure this behavior by changing the contents of that file.