@genesislcap/blank-app-seed 2.0.0 → 2.0.1
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 +1 -1
- package/.genx/tests/fixtures/testapp/server/{jvm/testapp-app → testapp-app}/src/main/genesis/cfg/testapp-processes.xml +1 -1
- package/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/gradle.properties +2 -1
- package/package.json +1 -1
- package/server/gradle.properties +1 -0
- package/server/{{appName}}-app/src/main/kotlin/.gitkeep +0 -0
- /package/.genx/tests/fixtures/testapp/server/{jvm/testapp-app → testapp-app}/src/main/genesis/cfg/testapp-fields-dictionary.kts +0 -0
- /package/.genx/tests/fixtures/testapp/server/{jvm/testapp-app → testapp-app}/src/main/genesis/cfg/testapp-service-definitions.xml +0 -0
- /package/.genx/tests/fixtures/testapp/server/{jvm/testapp-app → testapp-app}/src/main/genesis/cfg/testapp-tables-dictionary.kts +0 -0
- /package/.genx/tests/fixtures/testapp/server/{jvm/testapp-app → testapp-app}/src/main/genesis/scripts/testapp-dataserver.kts +0 -0
- /package/.genx/tests/fixtures/testapp/server/{jvm/testapp-app → testapp-app}/src/main/genesis/scripts/testapp-eventhandler.kts +0 -0
package/.genx/package.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<package>global.genesis.eventhandler.pal</package>
|
|
31
31
|
<script>testapp-eventhandler.kts</script>
|
|
32
32
|
<description>Handles events</description>
|
|
33
|
-
<classpath>testapp-
|
|
33
|
+
<classpath>testapp-app*</classpath>
|
|
34
34
|
<language>pal</language>
|
|
35
35
|
</process>
|
|
36
36
|
</processes>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.0...v2.0.1) (2024-03-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add kotlin folder for kotlin scripts are recognised correctly by intellij [PLAT-1165](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/1165) (#141) 5d9cc3e
|
|
9
|
+
|
|
3
10
|
## [2.0.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v1.5.5...v2.0.0) (2024-03-07)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -44,11 +44,11 @@ If you need an introduction to the Genesis platform and its modules it's worth h
|
|
|
44
44
|
|
|
45
45
|
## Project Structure
|
|
46
46
|
|
|
47
|
-
This project contains **server
|
|
47
|
+
This project contains **server** and **client** directories which contain the server and client code respectively.
|
|
48
48
|
|
|
49
49
|
### Server
|
|
50
50
|
|
|
51
|
-
The server code for this project can be found [here](./server/
|
|
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
54
|
### Web Client
|
package/gradle.properties
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
kotlin.code.style=official
|
|
2
2
|
org.gradle.jvmargs=-Xmx6g -Xss512k -XX:+HeapDumpOnOutOfMemoryError -XX:+UseG1GC -XX:+UseStringDeduplication -XX:ReservedCodeCacheSize=512m -Dkotlin.daemon.jvm.options=-Xmx2g -Dfile.encoding=UTF-8
|
|
3
|
-
org.gradle.caching=true
|
|
3
|
+
org.gradle.caching=true
|
|
4
|
+
org.gradle.configuration-cache=true
|
package/package.json
CHANGED
package/server/gradle.properties
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
bundleGeneratedClasses=true
|
|
2
2
|
org.gradle.jvmargs=-Xmx6g -Xss512k -XX:+HeapDumpOnOutOfMemoryError -XX:+UseG1GC -XX:+UseStringDeduplication -XX:ReservedCodeCacheSize=512m -Dkotlin.daemon.jvm.options=-Xmx2g -Dfile.encoding=UTF-8
|
|
3
|
+
org.gradle.configuration-cache=true
|
|
3
4
|
enableDockerTasks=true
|
|
4
5
|
dockerCompactProcesses=true
|
|
5
6
|
genesisVersion={{ versions.GSF }}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|