@genesislcap/blank-app-seed 2.5.6 → 2.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.genx/configure.js +5 -3
- package/.genx/package.json +1 -1
- package/.genx/templates/route.template.hbs +2 -2
- package/.genx/versions.json +1 -1
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/server/{{appName}}-app/src/main/genesis/cfg/genesis-system-definition.kts +4 -4
- package/server/{{appName}}-app/src/main/genesis/cfg/{{appName}}-processes.xml +14 -14
- package/server/{{appName}}-app/src/main/genesis/cfg/{{appName}}-service-definitions.xml +8 -8
package/.genx/configure.js
CHANGED
|
@@ -14,8 +14,10 @@ module.exports = async (data, utils) => {
|
|
|
14
14
|
|
|
15
15
|
registerPartials(utils);
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
data.routes
|
|
18
|
+
.map((route) => ({ ...route, layoutKey: `${route.name}_${Date.now()}` }))
|
|
19
|
+
.forEach((route) => {
|
|
20
|
+
generateRoute(route, utils);
|
|
21
|
+
});
|
|
20
22
|
|
|
21
23
|
};
|
package/.genx/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { html } from '@microsoft/fast-element';
|
|
2
|
-
import type { {{pascalCase route.name}} } from './{{route.name}}';
|
|
2
|
+
import type { {{pascalCase route.name}} } from './{{kebabCase route.name}}';
|
|
3
3
|
|
|
4
4
|
export const {{pascalCase route.name}}Template = html<{{pascalCase route.name}}>`
|
|
5
5
|
{{#if route.tiles}}
|
|
6
|
-
<zero-layout auto-save-key="{{route.
|
|
6
|
+
<zero-layout auto-save-key="{{route.layoutKey}}">
|
|
7
7
|
<zero-layout-region>
|
|
8
8
|
{{#each route.tiles}}
|
|
9
9
|
<zero-layout-item title="{{this.title}}">
|
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.8](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.7...v2.5.8) (2024-04-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* create unique layout autosave key attribute GENC-266 (#171) 8fd91ec
|
|
9
|
+
|
|
10
|
+
## [2.5.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.6...v2.5.7) (2024-04-03)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* support lowercase characters and spaces in route generation GENC-259 (#170) fd34c05
|
|
16
|
+
|
|
3
17
|
## [2.5.6](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.5...v2.5.6) (2024-03-27)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -6,15 +6,15 @@ systemDefinition {
|
|
|
6
6
|
item(name = "DbHost", value = "jdbc:h2:file:~/{{appName}}/server/h2/test;DB_CLOSE_DELAY=-1;NON_KEYWORDS=VALUE,KEY;AUTO_SERVER=TRUE")
|
|
7
7
|
item(name = "DbQuotedIdentifiers", value = true)
|
|
8
8
|
item(name = "DEPLOYED_PRODUCT", value = "{{appName}}")
|
|
9
|
-
item(name = "MqLayer", value =
|
|
9
|
+
item(name = "MqLayer", value = "ZeroMQ")
|
|
10
10
|
item(name = "AliasSource", value = "DB")
|
|
11
11
|
item(name = "HookStateStore", value = "DB")
|
|
12
12
|
item(name = "MetricsEnabled", value = "false")
|
|
13
13
|
item(name = "ZeroMQProxyInboundPort", value = "5001")
|
|
14
14
|
item(name = "ZeroMQProxyOutboundPort", value = "5000")
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
item(name = "DbUsername", value = "Enter DB Username")
|
|
16
|
+
item(name = "DbPassword", value = "Enter DB Password")
|
|
17
|
+
item(name = "DbSqlConnectionPoolSize", value = "3")
|
|
18
18
|
item(name = "DbMode", value = "VANILLA")
|
|
19
19
|
item(name = "GenesisNetProtocol", value = "V2")
|
|
20
20
|
item(name = "ResourcePollerTimeout", value = "5")
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
!
|
|
12
12
|
-->
|
|
13
13
|
<processes>
|
|
14
|
-
<!-- <process name="{{
|
|
15
|
-
<!-- <groupId>{{
|
|
14
|
+
<!-- <process name="{{constantCase appName}}_DATASERVER">-->
|
|
15
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
16
16
|
<!-- <start>true</start>-->
|
|
17
17
|
<!-- <options>-Xmx1024m -DXSD_VALIDATE=false</options>-->
|
|
18
18
|
<!-- <module>genesis-pal-dataserver</module>-->
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
<!-- <description>Displays real-time details</description>-->
|
|
22
22
|
<!-- <language>pal</language>-->
|
|
23
23
|
<!-- </process>-->
|
|
24
|
-
<!-- <process name="{{
|
|
25
|
-
<!-- <groupId>{{
|
|
24
|
+
<!-- <process name="{{constantCase appName}}_REQUEST_SERVER">-->
|
|
25
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
26
26
|
<!-- <start>true</start>-->
|
|
27
27
|
<!-- <options>-Xmx256m -DXSD_VALIDATE=false</options>-->
|
|
28
28
|
<!-- <module>genesis-pal-requestserver</module>-->
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
<!-- <description>Server one-shot requests for details</description>-->
|
|
32
32
|
<!-- <language>pal</language>-->
|
|
33
33
|
<!-- </process>-->
|
|
34
|
-
<!-- <process name="{{
|
|
35
|
-
<!-- <groupId>{{
|
|
34
|
+
<!-- <process name="{{constantCase appName}}_EVENT_HANDLER">-->
|
|
35
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
36
36
|
<!-- <start>true</start>-->
|
|
37
37
|
<!-- <options>-Xmx512m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
|
|
38
38
|
<!-- <module>genesis-pal-eventhandler</module>-->
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
<!-- <classpath>{{appName}}-app*</classpath>-->
|
|
43
43
|
<!-- <language>pal</language>-->
|
|
44
44
|
<!-- </process>-->
|
|
45
|
-
<!-- <process name="{{
|
|
46
|
-
<!-- <groupId>{{
|
|
45
|
+
<!-- <process name="{{constantCase appName}}_CONSOLIDATOR">-->
|
|
46
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
47
47
|
<!-- <start>true</start>-->
|
|
48
48
|
<!-- <options>-Xmx256m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
|
|
49
49
|
<!-- <module>genesis-pal-consolidator</module>-->
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
<!-- <loggingLevel>INFO,DATADUMP_OFF</loggingLevel>-->
|
|
53
53
|
<!-- <language>pal</language>-->
|
|
54
54
|
<!-- </process>-->
|
|
55
|
-
<!-- <process name="{{
|
|
56
|
-
<!-- <groupId>{{
|
|
55
|
+
<!-- <process name="{{constantCase appName}}_STREAMER">-->
|
|
56
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
57
57
|
<!-- <start>true</start>-->
|
|
58
58
|
<!-- <options>-Xmx128m -DXSD_VALIDATE=false</options>-->
|
|
59
59
|
<!-- <module>genesis-pal-streamer</module>-->
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
<!-- <loggingLevel>INFO,DATADUMP_OFF</loggingLevel>-->
|
|
63
63
|
<!-- <language>pal</language>-->
|
|
64
64
|
<!-- </process>-->
|
|
65
|
-
<!-- <process name="{{
|
|
66
|
-
<!-- <groupId>{{
|
|
65
|
+
<!-- <process name="{{constantCase appName}}_STREAMER_CLIENT">-->
|
|
66
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
67
67
|
<!-- <start>true</start>-->
|
|
68
68
|
<!-- <options>-Xmx128m -DXSD_VALIDATE=false</options>-->
|
|
69
69
|
<!-- <module>genesis-pal-streamerclient</module>-->
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
<!-- <primaryOnly>true</primaryOnly>-->
|
|
81
81
|
<!-- <package>global.genesis.eventhandler,global.genesis.evaluator</package>-->
|
|
82
82
|
<!-- </process>-->
|
|
83
|
-
<!-- <process name="{{
|
|
84
|
-
<!-- <groupId>{{
|
|
83
|
+
<!-- <process name="{{constantCase appName}}_DATAPIPELINE">-->
|
|
84
|
+
<!-- <groupId>{{constantCase appName}}</groupId>-->
|
|
85
85
|
<!-- <start>true</start>-->
|
|
86
86
|
<!-- <options>-Xmx256m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
|
|
87
87
|
<!-- <module>genesis-pal-datapipeline</module>-->
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
!
|
|
12
12
|
-->
|
|
13
13
|
<configuration>
|
|
14
|
-
<!-- <service host="localhost" name="{{
|
|
15
|
-
<!-- <service host="localhost" name="{{
|
|
16
|
-
<!-- <service host="localhost" name="{{
|
|
17
|
-
<!-- <service host="localhost" name="{{
|
|
18
|
-
<!-- <service host="localhost" name="{{
|
|
19
|
-
<!-- <service host="localhost" name="{{
|
|
20
|
-
<!-- <service host="localhost" name="{{
|
|
14
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_DATASERVER" port="11000"/>-->
|
|
15
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_REQUEST_SERVER" port="11001"/>-->
|
|
16
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_EVENT_HANDLER" port="11002"/>-->
|
|
17
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_CONSOLIDATOR" port="11003"/>-->
|
|
18
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_FGW" port ="11004"/>-->
|
|
19
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_FGW_STREAMER" port ="11005"/>-->
|
|
20
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_FGW_STREAMER_CLIENT" port ="11006"/>-->
|
|
21
21
|
<!-- <service host="localhost" name="GENESIS_EVALUATOR" port="11007"/>-->
|
|
22
|
-
<!-- <service host="localhost" name="{{
|
|
22
|
+
<!-- <service host="localhost" name="{{constantCase appName}}_DATAPIPELINE" port="11008"/>-->
|
|
23
23
|
</configuration>
|