Sha256: b647d152d993b240ae7f8aaea127e8344edf3da933757d7a577525166baa991b

Contents?: true

Size: 1.5 KB

Versions: 6

Compression:

Stored size: 1.5 KB

Contents

default: &default
  database: pact_broker
  username: pact_broker
  password: pact_broker
  encoding: utf8

test:
  default:
    adapter: sqlite
    database: tmp/pact_broker_database_test.sqlite3
  postgres:
    <<: *default
    adapter: postgres
  docker_postgres:
    adapter: postgres
    database: postgres
    username: postgres
    password: postgres
    host: localhost
    port: "5433"
  docker_compose_postgres:
    adapter: postgres
    database: postgres
    username: postgres
    password: postgres
    host: postgres
    port: "5432"
  mysql:
    <<: *default
    adapter: mysql2
  docker_compose_mysql:
    <<: *default
    adapter: mysql2
    host: mysql
  docker_mysql:
    <<: *default
    adapter: mysql2
    host: "192.168.0.9"
  github_actions_postgres:
    adapter: postgres
    database: postgres
    username: postgres
    password: postgres
    host: localhost
    port: "5432"
  github_actions_mysql:
    adapter: mysql2
    database: pact_broker
    username: pact_broker
    password: pact_broker
    host: localhost
    port: 3306

development:
  default:
    adapter: sqlite
    database: db/pact_broker_database.sqlite3
  postgres:
    <<: *default
    adapter: postgres
  docker_postgres:
    adapter: postgres
    database: postgres
    username: postgres
    password: postgres
    host: localhost
    port: "5432"
  mysql:
    <<: *default
    adapter: mysql2
  docker_mysql:
    <<: *default
    adapter: mysql2
    host: localhost

production:
  default:
    <<: *default
    adapter: postgres

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pact_broker-2.74.1 config/database.yml
pact_broker-2.74.0 config/database.yml
pact_broker-2.73.0 config/database.yml
pact_broker-2.72.0 config/database.yml
pact_broker-2.71.0 config/database.yml
pact_broker-2.70.0 config/database.yml