Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/_posts/platform/app/2000-01-01-procfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
index: 11
title: Procfile
tags: internals process types procfile heroku
modified_at: 2026-04-29 00:00:00
modified_at: 2026-07-16 00:00:00
---

Procfile support is one of our
Expand Down Expand Up @@ -130,9 +130,10 @@ with the following format:
```

- `<process_type>` designates the name of the process type. It can only contain
alphanumerics (`[A-Za-z0-9]+`). Except this rule, you are free to name your
process type how you want: `heavyProcess`, `synchronizer`, `scheduler`,
`console`, `trex`... These are all examples of valid process type names.
alphanumerics (`[A-Za-z0-9]+`) and must be no longer than 24 characters.
Except these two rules, you are free to name your process type how you want:
`heavyProcess`, `synchronizer`, `scheduler`, `console`, `trex`... These are
all examples of valid process type names.
- `<command>` designates the command to run when a container of the specified
type is booted up. It can be any Bash command. Using environment variables in
the command is allowed, and even encouraged.
Expand Down