Initial sinatra project structure

This commit is contained in:
2024-07-03 09:32:02 -04:00
parent 55400fa30d
commit fb7f99d67b
21 changed files with 324 additions and 0 deletions

18
Rakefile Normal file
View File

@ -0,0 +1,18 @@
require 'bundler/setup'
namespace :server do
task :start do
ENV['APP_ENV'] = 'production'
system("puma")
end
task :dev do
system('rerun --no-notify --exit --dir="src/" puma')
end
end
namespace :test do
task :rubocop do
system("rubocop src/")
end
end