We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b3b566 commit 81e50f8Copy full SHA for 81e50f8
.gitignore
@@ -9,6 +9,7 @@ web2/dist/**/*
9
/config.json
10
/.dredd/config.json
11
/database.bolt
12
+/database.boltdb
13
.DS_Store
14
node_modules/
15
cli/setup/setup.go
@@ -36,10 +36,13 @@ func InteractiveSetup(conf *util.ConfigType) {
36
37
switch db {
38
case 1:
39
+ conf.Dialect = util.DbDriverMySQL
40
scanMySQL(conf)
41
case 2:
42
+ conf.Dialect = util.DbDriverBolt
43
scanBoltDb(conf)
44
case 3:
45
+ conf.Dialect = util.DbDriverPostgres
46
scanPostgres(conf)
47
}
48
0 commit comments