-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.json
39 lines (39 loc) · 975 Bytes
/
config.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
{
"name": "api-customers",
"version": "1.0.0",
"groupId": "com.example.api",
"artifactId": "api-customers",
"rootPackage": "com.example.customers",
"handlerPackage":"com.example.customers.handler",
"modelPackage":"com.example.customers.model",
"overwriteHandler": false,
"overwriteHandlerTest": false,
"overwriteModel": true,
"httpPort": 8080,
"enableHttp": false,
"httpsPort": 9443,
"enableHttps": true,
"enableRegistry": false,
"eclipseIDE": false,
"supportDb": false,
"dbInfo": {
"name": "mysql",
"driverClassName": "com.mysql.jdbc.Driver",
"jdbcUrl": "jdbc:mysql://mysqldb:3306/oauth2?useSSL=false",
"username": "root",
"password": "my-secret-pw"
},
"supportH2ForTest": false,
"supportClient": true,
"dockerOrganization": "networknt",
"generateEnvVars": {
"generate": true,
"skipArray": true,
"skipMap": true,
"exclude": [
"service.yml",
"handler.yml",
"values.yml"
]
}
}