Fix puma start command and add sinatra-activerecord
Build and Validate / build-and-test (push) Failing after 27s

This commit is contained in:
2026-04-20 10:05:16 -04:00
parent 1f637c6bde
commit 39698cd32f
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@ source 'https://rubygems.org'
gem 'sinatra' gem 'sinatra'
gem 'sinatra-contrib' gem 'sinatra-contrib'
gem 'sinatra-activerecord'
gem 'activerecord', '~> 7.1' gem 'activerecord', '~> 7.1'
gem 'sqlite3', '~> 1.6' gem 'sqlite3', '~> 1.6'
gem 'bcrypt' gem 'bcrypt'
+1 -1
View File
@@ -4,4 +4,4 @@ set -e
mkdir -p db mkdir -p db
# Puma will run app.rb which auto-migrates the database # Puma will run app.rb which auto-migrates the database
exec bundle exec puma -C config.ru -b tcp://0.0.0.0:4567 exec bundle exec puma config.ru -b tcp://0.0.0.0:4567