Added Sequel ORM for database handling; added navbar

This commit is contained in:
2023-07-05 18:04:31 -04:00
parent 6f680e72e5
commit 6c1c8bca0a
16 changed files with 122 additions and 4 deletions

View File

@ -7,6 +7,12 @@ task :setup do
system("bundle install")
end
namespace :db do
task :migrate do
%x{sequel -m 'db/migrations/' 'sqlite://data/gamedata.db'}
end
end
namespace :server do
task :start do
ENV['APP_ENV'] = 'production'