view config/database.yml.example @ 446:86729239f2de

Update license wording and year Based on original ISC license as currently used by OpenBSD.
author nanaya <me@myconan.net>
date Sat, 25 Mar 2017 17:58:49 +0900
parents bcca41003e84
children
line wrap: on
line source

# Copy this to "database.yml" and adjust the fields accordingly.
# Should work with any adapter.
login: &login
  adapter: postgresql
  pool: 5
  username: zp
  password: silica
  host: 127.0.0.1

development:
  database: zeropaste_dev
  <<: *login

test:
  database: zeropaste_test
  <<: *login

production:
  database: zeropaste
  <<: *login