diff --git a/index.html b/index.html index da136f8..6bec8ae 100644 --- a/index.html +++ b/index.html @@ -66,9 +66,11 @@ EXPORTING OPTIONS EXPORT FORMATS + JSON EXPORT INITTAB EXPORT UPSTART EXPORT PROCFILE + DEFAULT OPTIONS EXAMPLES COPYRIGHT @@ -155,11 +157,19 @@ application.
foreman currently supports the following output formats:
json
inittab
upstart
Will export your processes as JSON:
+ +{ "web": { "command": "bundle exec thin start" } }
+
+
Will export a chunk of inittab-compatible configuration:
@@ -186,8 +196,23 @@ will be structured to make the following commands valid:A Procfile should contain both a name for the process and the command used to run it.
-web: bundle exec thin start
-job: bundle exec rake jobs:work
+web: bundle exec thin start
+job: bundle exec rake jobs:work
+
+
+You can validate your Procfile format using the check command
+
+$ foreman check
+
+
+DEFAULT OPTIONS
+
+If a .foreman file exists in the current directory, default options will
+be read from it. This file should be in YAML format with the long option
+name as keys. Example:
+
+concurrency: alpha=0
+port: 15000
EXAMPLES
@@ -213,8 +238,8 @@ job: bundle exec rake jobs:work
- - Foreman 0.10.0
- - December 2010
+ - Foreman 0.11.1
+ - March 2011
- foreman(1)