Copied initial project structure from Raven

This commit is contained in:
2023-03-02 13:24:24 -05:00
parent c509297b1c
commit 69ec98cba1
20 changed files with 2064 additions and 1 deletions

20
Rakefile Normal file
View File

@ -0,0 +1,20 @@
require 'bundler/setup'
require 'sequel'
require 'sqlite3'
namespace :db do
task :migrate do
%x{sequel -m 'db/migrations/' 'sqlite://data/stgm.db'}
end
end
namespace :server do
task :dev do
%x{ruby server.rb}
end
task :reload do
%x{rerun --no-notify 'ruby server.rb'}
end
end