Added started adding some Sinatra app stuff

This commit is contained in:
2023-07-02 23:42:24 -04:00
parent f599a3b9fa
commit b376bf3a79
8 changed files with 71 additions and 1 deletions

8
Rakefile Normal file
View File

@ -0,0 +1,8 @@
require 'bundler/setup'
namespace :server do
task :start do
system("puma")
end
end