Sha256: 12f627592a6044b29f968fe61f5e586bbc873713204c3d43295f6e2498c0cb65
Contents?: true
Size: 936 Bytes
Versions: 18
Compression:
Stored size: 936 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['DATABASE_HOST'] || "localhost" %> port: 5438 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
18 entries across 18 versions & 1 rubygems