From 0e6d1bbd6d301e6ccf43c8e71cead7c6c71f2dac Mon Sep 17 00:00:00 2001 From: bananaappletw Date: Sat, 4 Feb 2017 13:31:37 +0800 Subject: [PATCH] Change database config development to sqlite, test to memory --- config.json.example | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/config.json.example b/config.json.example index 80662b0..9ee00c0 100644 --- a/config.json.example +++ b/config.json.example @@ -2,18 +2,13 @@ "test": { "db": { "dialect": "sqlite", - "storage": "./db.hackmd.sqlite" + "storage": ":memory:" } }, "development": { - "domain": "localhost", "db": { - "username": "", - "password": "", - "database": "hackmd", - "host": "localhost", - "port": "3306", - "dialect": "mysql" + "dialect": "sqlite", + "storage": "./db.hackmd.sqlite" } }, "production": {