Added rake task to start server in a more production-ready manner using Puma; move config values to config directory

This commit is contained in:
2023-03-09 23:22:18 -05:00
parent 39ce636c0a
commit 0927a00960
7 changed files with 22 additions and 8 deletions

View File

@ -15,7 +15,11 @@ namespace :db do
end
namespace :server do
task :dev do
task :start do
system("bundle exec puma -C config/puma.rb")
end
task :reload do
%x{guard}
end
end