Made Capistrano use Puma tasks.

This commit is contained in:
Logan Fick
2018-05-19 12:30:28 -04:00
parent 8e534e3330
commit 4f4d3834d2
2 changed files with 6 additions and 42 deletions

View File

@@ -11,10 +11,14 @@ require 'capistrano/rails/migrations'
namespace :deploy do
desc 'Start application'
task(:start) {}
task(:start) {
invoke 'puma:start'
}
desc 'Stop application'
task(:stop) {}
task(:stop) {
invoke 'puma:stop'
}
end
# Load custom tasks from `lib/capistrano/tasks' if you have any defined