File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ def setup
9
9
say "Ensure Docker is installed..." , :magenta
10
10
invoke "kamal:cli:server:bootstrap" , [ ] , invoke_options
11
11
12
+ say "Ensure kamal-proxy is running..." , :magenta
13
+ invoke "kamal:cli:proxy:boot" , [ ] , invoke_options
14
+
12
15
invoke "kamal:cli:accessory:boot" , [ "all" ] , invoke_options
13
16
deploy
14
17
end
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ class CliMainTest < CliTestCase
8
8
invoke_options = { "config_file" => "test/fixtures/deploy_simple.yml" , "version" => "999" , "skip_hooks" => false }
9
9
10
10
Kamal ::Cli ::Main . any_instance . expects ( :invoke ) . with ( "kamal:cli:server:bootstrap" , [ ] , invoke_options )
11
+ Kamal ::Cli ::Main . any_instance . expects ( :invoke ) . with ( "kamal:cli:proxy:boot" , [ ] , invoke_options )
11
12
Kamal ::Cli ::Main . any_instance . expects ( :invoke ) . with ( "kamal:cli:accessory:boot" , [ "all" ] , invoke_options )
12
13
Kamal ::Cli ::Main . any_instance . expects ( :deploy )
13
14
You can’t perform that action at this time.
0 commit comments