-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnae.json
114 lines (114 loc) · 3.5 KB
/
nae.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"$schema": "./node_modules/@netgrif/application-engine/src/schema/nae-schema.json",
"extends": "nae-default",
"providers": {
"auth": {
"address": "http://localhost:8080/api/",
"authentication": "Basic",
"endpoints": {
"login": "auth/login",
"logout": "auth/logout",
"signup": "auth/signup",
"verification": "auth/verify",
"verify": "auth/token/verify",
"invite": "auth/invite",
"reset": "auth/reset",
"recover": "/auth/recover"
},
"sessionBearer": "X-Auth-Token"
},
"resources": [
{
"name": "case",
"address": "http://localhost:8080/api/",
"format": "hal",
"openApi": "https://swagger.io"
},
{
"name": "task",
"address": "http://localhost:8080/api/",
"format": "json"
},
{
"name": "petrinet",
"address": "http://localhost:8080/api/",
"format": "json"
},
{
"name": "user",
"address": "http://localhost:8080/api/",
"format": "json"
},
{
"name": "dashboard",
"address": "http://localhost:8080/api/",
"format": "json"
}
]
},
"views": {
},
"theme": {
"name": "nab",
"pallets": {
"light": {
"primary": {
"50": "#e2eaf0",
"100": "#b7c9d9",
"200": "#87a6c0",
"300": "#5782a7",
"400": "#336794",
"500": "#0f4c81",
"600": "#0d4579",
"700": "#0b3c6e",
"800": "#083364",
"900": "#042451",
"A100": "#ffd180",
"A200": "#ffab40",
"A400": "#ff9100",
"A700": "#ff6d00",
"contrast": {
"light": [
"300",
"400",
"500",
"600",
"700",
"800",
"900"
],
"dark": [
"50",
"100",
"200"
]
}
}
}
}
},
"services": {
"log": {
"level": "ALL",
"logWithDate": true,
"serializeExtraParams": true,
"includeLogLevel": true,
"publishers": [
"console",
"localStorage"
]
},
"dataFields": {
"template": "material",
"appearance": "outline"
},
"urls": {
"netgrif": "https://netgrif.com",
"bpmn2pn": "https://bpmn2pn.netgrif.cloud/bpmn2pn/",
"engine": "https://demo.netgrif.com/",
"youtube": "https://www.youtube.com/channel/UCNfqgnjskMMpy7QvOOKhKgw",
"github": "https://github.com/netgrif",
"issues": "https://github.com/netgrif/application-builder/issues"
}
}
}