From d388a09ad83a10674286902ef56db76c7dcfdbfa Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Fri, 22 Jan 2016 13:00:47 +0000 Subject: [PATCH] Update config to use postgres Signed-off-by: Patrick Uiterwijk --- roles/regcfp/templates/config.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/roles/regcfp/templates/config.json b/roles/regcfp/templates/config.json index 7ec2b40080..79f66273a6 100644 --- a/roles/regcfp/templates/config.json +++ b/roles/regcfp/templates/config.json @@ -1,5 +1,5 @@ { - "development": { + "production": { "theming": { "site_name": "FLOCK 2016 Registration", "event_name": "Flock 2016", @@ -7,9 +7,10 @@ }, "secret": "{{ regcfp_secret }}", "database": { - "database": "database.sqlite", - "dialect": "sqlite", - "storage": "database.sqlite", + "dialect": "postgres", + "database": "regcfp", + "username": "regcfp", + "password": "{{ regcfp_db_pass }}", "define": { "paranoid": true }