@genesislcap/blank-app-seed 3.30.0-prerelease.30 → 3.30.0-prerelease.31

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.30.0-prerelease.30",
4
+ "version": "3.30.0-prerelease.31",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * home page url - react (#369) 388cf04
9
+
3
10
  ## [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
11
 
5
12
 
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
- # Introduction
34
+ # Getting started with development
35
35
 
36
- ## Next Steps
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 Structure
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 Client
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 low-code platform
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
- // autoConnect: true, // < Workaround - Guard should ensure connection
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() ?? '/home';
19
+ const lastPath = getUser().lastPath() ?? '/{{kebabCase routes.[0].name}}';
20
20
  router.push(lastPath);
21
21
  }, 0);
22
22
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.30.0-prerelease.30",
4
+ "version": "3.30.0-prerelease.31",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"