@genesislcap/blank-app-seed 3.30.0-prerelease.30 → 3.30.0-prerelease.32
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/versions.json +1 -1
- package/CHANGELOG.md +14 -0
- package/README.md +5 -9
- package/client-tmp/react/src/share/foundation-login.ts +2 -2
- package/package.json +1 -1
package/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.30.0-prerelease.32](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.31...v3.30.0-prerelease.32) (2024-10-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) d26e635
|
|
9
|
+
|
|
10
|
+
## [3.30.0-prerelease.31](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.30...v3.30.0-prerelease.31) (2024-10-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* home page url - react (#369) 388cf04
|
|
16
|
+
|
|
3
17
|
## [3.30.0-prerelease.30](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.29...v3.30.0-prerelease.30) (2024-10-22)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -31,19 +31,15 @@ npx -y @genesislcap/genx@latest init myapp -x -s ./blank-app-seed --enableSSO --
|
|
|
31
31
|
```
|
|
32
32
|
}}
|
|
33
33
|
|
|
34
|
-
#
|
|
34
|
+
# Getting started with development
|
|
35
35
|
|
|
36
|
-
## Next
|
|
36
|
+
## Next steps
|
|
37
37
|
|
|
38
38
|
To get a simple application running check the [Quick Start](https://learn.genesis.global/docs/getting-started/quick-start/) guide.
|
|
39
39
|
|
|
40
40
|
If you need an introduction to the Genesis platform and its modules it's worth heading [here](https://learn.genesis.global/docs/getting-started/learn-the-basics/simple-introduction/).
|
|
41
41
|
|
|
42
|
-
## Project
|
|
43
|
-
|
|
44
|
-
This project has been created from the Genesis Blank Application Seed. Our seeds allow users to quickly bootstrap
|
|
45
|
-
their projects. Each seed adheres to strict Genesis best practices, and has passed numerous performance, compliance and
|
|
46
|
-
accessibility checks.
|
|
42
|
+
## Project structure
|
|
47
43
|
|
|
48
44
|
This project contains **server** and **client** directories which contain the server and client code respectively.
|
|
49
45
|
|
|
@@ -54,7 +50,7 @@ It is built using a DSL-like definition based on the Kotlin language: GPAL.
|
|
|
54
50
|
|
|
55
51
|
When first opening the project, if you receive a notification from IntelliJ IDE detecting Gradle project select the option to 'Load as gradle project'.
|
|
56
52
|
|
|
57
|
-
### Web
|
|
53
|
+
### Web client
|
|
58
54
|
|
|
59
55
|
The Web client for this project can be found [here](./client/README.md). It is built using Genesis's next
|
|
60
56
|
generation web development framework, which is based on Web Components.
|
|
@@ -66,4 +62,4 @@ This is free and unencumbered software released into the public domain. For full
|
|
|
66
62
|
**NOTE** This project uses licensed components listed in the next section, thus licenses for those components are required during development.
|
|
67
63
|
|
|
68
64
|
## Licensed components
|
|
69
|
-
Genesis
|
|
65
|
+
Genesis application platform
|
|
@@ -9,14 +9,14 @@ import type { Router } from '@/utils/history';
|
|
|
9
9
|
*/
|
|
10
10
|
export const configureFoundationLogin = ({ router }:{ router: Router }) => {
|
|
11
11
|
configure(DI.getOrCreateDOMContainer(), {
|
|
12
|
-
|
|
12
|
+
autoConnect: true,
|
|
13
13
|
autoAuth: true, // < Allow users to skip login
|
|
14
14
|
showConnectionIndicator: true,
|
|
15
15
|
hostPath: AUTH_PATH,
|
|
16
16
|
redirectHandler: () => {
|
|
17
17
|
// workaround for redirect from foundation-login
|
|
18
18
|
setTimeout(() => {
|
|
19
|
-
const lastPath = getUser().lastPath() ?? '/
|
|
19
|
+
const lastPath = getUser().lastPath() ?? '/{{kebabCase routes.[0].name}}';
|
|
20
20
|
router.push(lastPath);
|
|
21
21
|
}, 0);
|
|
22
22
|
},
|