Initial Sinatra project structure

This commit is contained in:
2022-12-10 01:59:30 -05:00
parent 7bc5ef2e82
commit bdc316ba9e
11 changed files with 158 additions and 0 deletions

11
Rakefile Normal file
View File

@ -0,0 +1,11 @@
require 'bundler/setup'
namespace :server do
task :dev do
%x{puma -C puma.rb}
end
task :reload do
%x{rerun --no-notify 'puma -C puma.rb'}
end
end