diff --git a/app/views/cookies_eu/_consent_banner.html.erb b/app/views/cookies_eu/_consent_banner.html.erb
index 2e7aec5..2f1e515 100644
--- a/app/views/cookies_eu/_consent_banner.html.erb
+++ b/app/views/cookies_eu/_consent_banner.html.erb
@@ -8,17 +8,6 @@
Gestion des cookies
-
-
diff --git a/config/database.yml b/config/database.yml
index ee34489..e9c16f6 100644
--- a/config/database.yml
+++ b/config/database.yml
@@ -78,7 +78,10 @@ test:
# for a full overview on how database connection configuration can be specified.
#
production:
- <<: *default
- database: def_blog_production
- username: def_blog
- password: <%= ENV["DEF_BLOG_DATABASE_PASSWORD"] %>
+ adapter: postgresql
+ encoding: unicode
+ pool: 5
+ database: <%= ENV['DATABASE_NAME'] %>
+ username: <%= ENV['DATABASE_USER'] %>
+ password: <%= ENV['DATABASE_PASSWORD'] %>
+ host: <%= ENV['DATABASE_HOST'] || 'localhost' %>