-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.json
More file actions
69 lines (69 loc) · 1.64 KB
/
options.json
File metadata and controls
69 lines (69 loc) · 1.64 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "axon-framework",
"maxPerRow": "1",
"options": [
{
"name": "version",
"value": "4.4",
"required": "true",
"description": "Axon framework version",
"type": "input"
},
{
"name": "axonserver-token",
"value": "",
"required": "true",
"description": "Token used to securely communicate with an Axon Server",
"type": "input"
},
{
"name": "axonserver-context",
"value": "context1",
"required": "true",
"description": "Default Context",
"type": "input"
},
{
"name": "axonserver-servers",
"value": "localhost",
"required": "false",
"description": "location of Axon Server",
"type": "input"
},
{
"name": "spring-datasource-url",
"value": "jdbc:h2:./database;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1;AUTO_SERVER=TRUE",
"required": "true",
"description": "database URL",
"type": "input"
},
{
"name": "default-snapshot-threshold",
"value": "10",
"required": "true",
"description": "default aggregate snapshot threshold",
"type": "input"
},
{
"name": "use-axon-server",
"value": "true",
"required": "true",
"description": "",
"type": "checkbox"
},
{
"name": "enable-monitoring",
"value": "true",
"required": "true",
"description": "",
"type": "checkbox"
},
{
"name": "enable-tracing",
"value": "true",
"required": "true",
"description": "",
"type": "checkbox"
}
]
}