You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lib/foreman/cli.rb
+7-6
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,13 @@ class Foreman::CLI < Foreman::Thor
19
19
20
20
desc"start [PROCESS]","Start the application (or a specific PROCESS)"
21
21
22
-
method_option:color,:type=>:boolean,:aliases=>"-c",:desc=>"Force color to be enabled"
23
-
method_option:env,:type=>:string,:aliases=>"-e",:desc=>"Specify an environment file to load, defaults to .env"
24
-
method_option:formation,:type=>:string,:aliases=>"-m",:banner=>'"alpha=5,bar=3"',:desc=>'Specify what processes will run and how many. Default: "all=1"'
25
-
method_option:port,:type=>:numeric,:aliases=>"-p"
26
-
method_option:timeout,:type=>:numeric,:aliases=>"-t",:desc=>"Specify the amount of time (in seconds) processes have to shutdown gracefully before receiving a SIGKILL, defaults to 5."
27
-
method_option:timestamp,:type=>:boolean,:default=>true,:desc=>"Include timestamp in output"
22
+
method_option:color,:type=>:boolean,:aliases=>"-c",:desc=>"Force color to be enabled"
23
+
method_option:env,:type=>:string,:aliases=>"-e",:desc=>"Specify an environment file to load, defaults to .env"
24
+
method_option:formation,:type=>:string,:aliases=>"-m",:banner=>'"alpha=5,bar=3"',:desc=>'Specify what processes will run and how many. Default: "all=1"'
25
+
method_option:interactive,:type=>:string,:aliases=>"-i",:desc=>"Run a process interactively"
26
+
method_option:port,:type=>:numeric,:aliases=>"-p"
27
+
method_option:timeout,:type=>:numeric,:aliases=>"-t",:desc=>"Specify the amount of time (in seconds) processes have to shutdown gracefully before receiving a SIGKILL, defaults to 5."
28
+
method_option:timestamp,:type=>:boolean,:default=>false,:desc=>"Include timestamp in output"
28
29
29
30
class << self
30
31
# Hackery. Take the run method away from Thor so that we can redefine it.
0 commit comments