-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dollie.json
48 lines (48 loc) · 1.11 KB
/
.dollie.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"questions": [
{
"type": "list",
"name": "dbType",
"message": "Select a database type",
"choices": ["mysql", "postgres", "cockroachdb", "mariadb", "sqlite", "better-sqlite3", "cordova", "nativescript", "oracle", "mssql", "mongodb", "sqljs", "react-native"],
"default": "mysql"
},
{
"type": "input",
"name": "dbHost",
"message": "Enter the hostname for database server",
"default": "127.0.0.1"
},
{
"type": "input",
"name": "dbPort",
"message": "Enter the port for database server",
"default": "3306"
},
{
"type": "input",
"name": "dbUsername",
"message": "Enter the username for database server",
"default": "root"
},
{
"type": "password",
"name": "dbPassword",
"message": "Enter the password for database server",
"default": "root"
},
{
"type": "input",
"name": "dbName",
"message": "Enter the database name",
"default": "root"
}
],
"files": {
"merge": [
"src/app.*.ts",
".apprc.ts",
"package.json"
]
}
}