database.yml 427 B

12345678910111213141516171819
  1. default: &default
  2. adapter: postgresql
  3. pool: 5
  4. timeout: 5000
  5. development:
  6. <<: *default
  7. database: mastodon_development
  8. # Warning: The database defined as "test" will be erased and
  9. # re-generated from your development database when you run "rake".
  10. # Do not set this db to the same as development or production.
  11. test:
  12. <<: *default
  13. database: mastodon_test
  14. production:
  15. <<: *default
  16. database: mastodon_production