summaryrefslogtreecommitdiffstats
path: root/config/config.json
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-07-12 14:56:44 -0800
committer=Corey Hulen <corey@hulen.com>2015-07-12 19:24:48 -0800
commitff21a5c75f090d5c27446eeaa6fb3ff6f82c5ab4 (patch)
tree09201bb6769d9ded3c5df61a770a5ea534799434 /config/config.json
parent27cab0f507d253bba5658335f42a4c7675fcdac7 (diff)
downloadchat-ff21a5c75f090d5c27446eeaa6fb3ff6f82c5ab4.tar.gz
chat-ff21a5c75f090d5c27446eeaa6fb3ff6f82c5ab4.tar.bz2
chat-ff21a5c75f090d5c27446eeaa6fb3ff6f82c5ab4.zip
Fixes mm-1420 adding postgres support
Diffstat (limited to 'config/config.json')
-rw-r--r--config/config.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.json b/config/config.json
index b0a019e8d..b4cac09f1 100644
--- a/config/config.json
+++ b/config/config.json
@@ -23,9 +23,9 @@
"AnalyticsUrl": ""
},
"SqlSettings": {
- "DriverName": "mysql",
- "DataSource": "mmuser:mostest@tcp(dockerhost:3306)/mattermost_test",
- "DataSourceReplicas": ["mmuser:mostest@tcp(dockerhost:3306)/mattermost_test"],
+ "DriverName": "postgres",
+ "DataSource": "postgres://mmuser:password@localhost:5432/mattermost_test?sslmode=disable&connect_timeout=10",
+ "DataSourceReplicas": ["postgres://mmuser:password@localhost:5432/mattermost_test?sslmode=disable&connect_timeout=10"],
"MaxIdleConns": 10,
"MaxOpenConns": 10,
"Trace": false,