Skip to content

Commit

Permalink
[chore] Ensure logger is required in dummy application
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Sheehy <[email protected]>
  • Loading branch information
lessthanjacob committed Jan 23, 2025
1 parent 955731d commit 43cf838
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions spec/dummy/config/application.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require File.expand_path('../boot', __FILE__)

require 'logger'
require 'rails/all'

Bundler.require(*Rails.groups)
Expand Down
5 changes: 3 additions & 2 deletions spec/dummy/config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ default: &default
adapter: postgresql
pool: 5
timeout: 5000
username: <%= ENV['POSTGRES_DB_USERNAME'] %>
password: <%= ENV['POSTGRES_DB_PASSWORD'] %>
username: postgres
password: postgres
host: 127.0.0.1

development:
<<: *default
Expand Down

0 comments on commit 43cf838

Please sign in to comment.