tldr/pages/linux/foreman.md

29 lines
552 B
Markdown
Raw Normal View History

2017-10-07 10:02:51 +01:00
# foreman
2017-10-15 04:58:16 +01:00
> Manage Procfile-based applications.
> More information: <https://manned.org/foreman>.
2017-10-07 10:02:51 +01:00
2017-10-15 04:58:16 +01:00
- Start an application with the Procfile in the current directory:
2017-10-07 19:54:14 +01:00
`foreman start`
- Start an application with a specified Procfile:
`foreman start -f {{Procfile}}`
2017-10-07 19:54:14 +01:00
- Start a specific application:
2017-10-07 10:02:51 +01:00
`foreman start {{process}}`
2017-10-07 19:54:14 +01:00
- Validate Procfile format:
`foreman check`
2017-10-07 10:02:51 +01:00
- Run one-off commands with the process's environment:
`foreman run {{command}}`
- Start all processes except the one named "worker":
2017-10-07 10:02:51 +01:00
`foreman start -m all=1,{{worker}}=0`