Skip to content

Commit

Permalink
Fix missing database.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
forsbergplustwo committed Aug 20, 2023
1 parent e6586e5 commit 57c7fae
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ db/*.sqlite3
.redcar/
.sass-cache
/config/config.yml
/config/database.yml
/coverage.data
/coverage/
/db/*.javadb/
Expand Down
13 changes: 13 additions & 0 deletions config/database.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
default: &default
adapter: postgresql
encoding: UNICODE
host: localhost
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>

development:
<<: *default
database: partner-metrics-dev

test:
<<: *default
database: partner-metrics-test

0 comments on commit 57c7fae

Please sign in to comment.