@genesislcap/blank-app-seed 2.5.2 → 2.5.4
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/package.json
CHANGED
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.3...v2.5.4) (2024-03-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* note about loading as Gradle project GENC-122 (#158) 14593b7
|
|
9
|
+
|
|
10
|
+
## [2.5.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.2...v2.5.3) (2024-03-19)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add SqlEnableSequenceGeneration as true GENC-197 (#155) aeabbf2
|
|
16
|
+
|
|
3
17
|
## [2.5.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.1...v2.5.2) (2024-03-19)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -51,6 +51,8 @@ This project contains **server** and **client** directories which contain the se
|
|
|
51
51
|
The server code for this project can be found [here](./server/README.md).
|
|
52
52
|
It is built using a DSL-like definition based on the Kotlin language: GPAL.
|
|
53
53
|
|
|
54
|
+
When first opening the project, if you receive a notification from IntelliJ IDE detecting Gradle project select the option to 'Load as gradle project'.
|
|
55
|
+
|
|
54
56
|
### Web Client
|
|
55
57
|
|
|
56
58
|
The Web client for this project can be found [here](./client/README.md). It is built using Genesis's next
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
systemDefinition {
|
|
2
2
|
global {
|
|
3
3
|
item(name = "DbLayer", value = "SQL")
|
|
4
|
+
item(name = "SqlEnableSequenceGeneration", value = true)
|
|
4
5
|
item(name = "DictionarySource", value = "DB")
|
|
5
6
|
item(name = "DbHost", value = "jdbc:h2:file:~/{{appName}}/server/h2/test;DB_CLOSE_DELAY=-1;NON_KEYWORDS=VALUE,KEY;AUTO_SERVER=TRUE")
|
|
6
7
|
item(name = "DbQuotedIdentifiers", value = true)
|