Skip to content

Commit

Permalink
Only show web from the Procfile
Browse files Browse the repository at this point in the history
Some getting started guides have comments that are not used until later that may be confusing #63 (comment). This commit moves to only show the "web" processes from the getting started guide.
  • Loading branch information
schneems committed Dec 17, 2024
1 parent 2acf714 commit 8a16984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/shared/procfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 8a16984

Please sign in to comment.