File: database.postgres.yml

package info (click to toggle)
ruby-paper-trail 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,200 kB
  • sloc: ruby: 6,743; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
test: &test
  adapter: postgresql
  database: <%= ENV.fetch('PT_CI_DATABASE', 'paper_trail') %>_test
  username: <%= ENV.fetch('PT_CI_DB_USER', 'postgres') %>
  password: <%= ENV.fetch('PT_CI_DB_PASSWORD', '') %>
  host: <%= ENV.fetch('PT_CI_DB_HOST', 'localhost') %>
  port: <%= ENV.fetch('PT_CI_DB_PORT', 5432) %>
  protocol: TCP