Sha256: 31fd17442648f3732f10b99ce3ef8e98a588939fed5904ecef8594e1647bc8cb
Contents?: true
Size: 939 Bytes
Versions: 5
Compression:
Stored size: 939 Bytes
Contents
# Copy this file to 'database.yml' and modify the copy as needed. # IMPORTANT: Do not commit 'database.yml'. defaults: &defaults adapter: postgresql username: <%= ENV['NULOGY_MESSAGE_BUS_PRODUCER_DATABASE_USER'] || "nulogy" %> password: <%= ENV['NULOGY_MESSAGE_BUS_PRODUCER_DATABASE_PASS'] || "Nulogy4Ever" %> host: <%= ENV['PM_DATABASE_HOST'] || "localhost" %> port: 5437 min_messages: warning schema_search_path: "\"$user\", public" development: &development <<: *defaults database: <%= ENV['NULOGY_MESSAGE_BUS_PRODUCER_DEVELOPMENT_DATABASE'] || "nulogy_message_bus_producer_development" %> # Warning: The database defined as 'test' will be erased and # re-generated from your development database when you run 'rake'. # Do not set this db to the same as development or production. test: &test <<: *defaults database: <%= ENV['NULOGY_MESSAGE_BUS_PRODUCER_TEST_DATABASE'] || "nulogy_message_bus_producer_test" %>
Version data entries
5 entries across 5 versions & 1 rubygems