ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
1.3 KiB

  1. # SQLite. Versions 3.8.0 and up are supported.
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem "sqlite3"
  6. #
  7. default: &default
  8. adapter: mysql2
  9. encoding: utf8mb4
  10. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  11. username: root
  12. password: password
  13. host: localhost
  14. # timeout: 5000
  15. development:
  16. <<: *default
  17. database: btrc_hub_dev
  18. # Warning: The database defined as "test" will be erased and
  19. # re-generated from your development database when you run "rake".
  20. # Do not set this db to the same as development or production.
  21. test:
  22. <<: *default
  23. database: btrc_hub_test
  24. # Store production database in the storage/ directory, which by default
  25. # is mounted as a persistent Docker volume in config/deploy.yml.
  26. production:
  27. <<: *default
  28. database: btrc_hub
  29. username: root
  30. password: password
  31. # primary:
  32. # <<: *default
  33. # database: storage/production.sqlite3
  34. # cache:
  35. # <<: *default
  36. # database: storage/production_cache.sqlite3
  37. # migrations_paths: db/cache_migrate
  38. # queue:
  39. # <<: *default
  40. # database: storage/production_queue.sqlite3
  41. # migrations_paths: db/queue_migrate
  42. # cable:
  43. # <<: *default
  44. # database: storage/production_cable.sqlite3
  45. # migrations_paths: db/cable_migrate