From 818a9910c1969796d40a59705754209105f9b18d Mon Sep 17 00:00:00 2001 From: Fosco Marotto Date: Sun, 27 Dec 2020 01:59:24 -0500 Subject: [PATCH] [database.yml] Use makara in development too --- config/database.yml | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/config/database.yml b/config/database.yml index 23a281ee..ef536a3c 100644 --- a/config/database.yml +++ b/config/database.yml @@ -7,11 +7,23 @@ default: &default development: <<: *default - database: <%= ENV['DB_NAME'] || 'gabsocial_development' %> - username: <%= ENV['DB_USER'] %> - password: <%= ENV['DB_PASS'] %> - host: <%= ENV['DB_HOST'] %> - port: <%= ENV['DB_PORT'] %> + adapter: postgresql_makara + prepared_statements: false + makara: + id: postgres + sticky: true + connections: + - role: master + blacklist_duration: 0 + url: postgresql://<%= ENV['DB_USER']%>:<%= ENV['DB_PASS'] %>@<%= ENV['DB_HOST'] %>:<%= ENV['DB_PORT'] %>/<%= ENV['DB_NAME'] || 'gabsocial_development' %> + - role: slave + url: postgresql://<%= ENV['DB_USER']%>:<%= ENV['DB_PASS'] %>@<%= ENV['DB_HOST'] %>:<%= ENV['DB_PORT'] %>/<%= ENV['DB_NAME'] || 'gabsocial_development' %> + +# database: <%= ENV['DB_NAME'] || 'gabsocial_development' %> +# username: <%= ENV['DB_USER'] %> +# password: <%= ENV['DB_PASS'] %> +# host: <%= ENV['DB_HOST'] %> +# port: <%= ENV['DB_PORT'] %> # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake".