https://github.com/backbase/react-example-app
OpenSource at Backbase
https://github.com/backbase/react-example-app
Last synced: 11 months ago
JSON representation
OpenSource at Backbase
- Host: GitHub
- URL: https://github.com/backbase/react-example-app
- Owner: Backbase
- Created: 2024-02-08T13:42:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T01:26:21.000Z (over 1 year ago)
- Last Synced: 2025-02-25T22:47:24.548Z (11 months ago)
- Language: TypeScript
- Homepage: https://github.com/backbase/.github
- Size: 760 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Backbase React
✨ **This workspace has been generated by [Nx, a Smart, fast and extensible build system.](https://nx.dev)** ✨
## Start the app (with Sandbox)
- run `npm run start` command
- Open your browser and navigate to http://localhost:4200/
## Start the app (with Mock Server)
- Open `apps/backbase-react/src/environments/environment.ts` file and update `skipLogin: false` to `skipLogin: true`
- run `npm run run:mocks` command
- Open your browser and navigate to http://localhost:4200/
## Running the app in web-base
- Open `apps/backbase-react/src/environments/environment.ts` file and set `skipLogin: false`
- run `npm run mock-server` command
- run `npm run run:docker` command
- Open your browser and navigate to http://localhost:4200/
## Generate Open API Spec using Typescript-RxJS
- run `openapi-generator-cli generate -i api.yaml -g typescript-rxjs -o ./tmp` command
## Additional Help
- If you face any issues while running the docker, run `colima stop` and `colima start` command. If previous commands does not solve the issue, run `colima delete` and `colima start` command.
- If process is already running on 4200 or 9999 port, run `lsof -i :9999` or `lsof i :4200` command, copy PID from output and run `kill -9 <>` command. Replace `<>` with actual PID.