Sha256: 8d1519159903775539777384dd2c60971a0182228d035bd610ae82360d9e6c0b
Contents?: true
Size: 653 Bytes
Versions: 4
Compression:
Stored size: 653 Bytes
Contents
default: &default adapter: postgresql encoding: utf8 port: 5432 development: <<: *default username: postgres password: postgres database: souls-api-dev host: localhost port: 5433 production: <<: *default username: <%= ENV.fetch("DB_USER") { "" } %> database: souls_api_production password: <%= ENV.fetch("DB_PW") { "" } %> host: <%= ENV.fetch("DB_HOST") { "" } %> pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> ## Use local docker postgresql13 ## `souls i run_psql` will create psql container test: <<: *default username: postgres password: postgres database: souls-api-test host: localhost port: 5433
Version data entries
4 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
souls-0.24.2 | apps/api/config/database.yml |
souls-0.24.2 | apps/worker/config/database.yml |
souls-0.24.1 | apps/api/config/database.yml |
souls-0.24.1 | apps/worker/config/database.yml |