The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

25 wiersze
645 B

  1. default: &default
  2. adapter: postgresql
  3. pool: 5
  4. timeout: 5000
  5. encoding: unicode
  6. development:
  7. <<: *default
  8. database: mastodon_development
  9. # Warning: The database defined as "test" will be erased and
  10. # re-generated from your development database when you run "rake".
  11. # Do not set this db to the same as development or production.
  12. test:
  13. <<: *default
  14. database: mastodon_test
  15. production:
  16. <<: *default
  17. database: <%= ENV['DB_NAME'] || 'mastodon_production' %>
  18. username: <%= ENV['DB_USER'] || 'mastodon' %>
  19. password: <%= ENV['DB_PASS'] || '' %>
  20. host: <%= ENV['DB_HOST'] || 'localhost' %>
  21. port: <%= ENV['DB_PORT'] || 5432 %>