https://github.com/bcgov/nr-forest-client
FSA Forest Client
https://github.com/bcgov/nr-forest-client
java lwrs nodejs oracle postgresql postres vue3
Last synced: about 2 months ago
JSON representation
FSA Forest Client
- Host: GitHub
- URL: https://github.com/bcgov/nr-forest-client
- Owner: bcgov
- License: apache-2.0
- Created: 2022-07-06T19:12:57.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-04-10T09:06:38.000Z (about 2 months ago)
- Last Synced: 2026-04-10T11:16:36.252Z (about 2 months ago)
- Topics: java, lwrs, nodejs, oracle, postgresql, postres, vue3
- Language: Java
- Homepage:
- Size: 53 MB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
[](https://github.com/bcgov/nr-forest-client/actions/workflows/merge.yml)
[](https://github.com/bcgov/nr-forest-client/actions/workflows/analysis.yml)
[](/../../issues)
[](/../../pulls)
[](/LICENSE.md)
[](https://github.com/bcgov/repomountie/blob/master/doc/lifecycle-badges.md)
The nr-forest-client is a node.js application built with [Vue.js](https://vuejs.org) in typescript as frontend, [Spring boot java](https://spring.io/projects/spring-boot#learn) as backend, postgres and oracle for database, integrated with the [QuickStart for OpenShift](https://github.com/bcgov/quickstart-openshift) to automate the process for testing, security scanning, code quality checking, image building and deploying.
## Frontend
The frontend is built in Vue3 composition api, more info [here](frontend/README.md)
## Backend
The backend is built in Java 17 using Spring Boot 3. It is composed of multiple components, more info about the [backend here](backend/README.md), the [legacy](legacy/README.md) part that handles oracle connections and the [processor](processor/README.md) that handles the submission processing part.
## Email templates
For more info about the email templates, [click here](backend/docs/MAIL_FORMAT.md)
## Automated End-to-End tests
For automated end-to-end tests with cypress you can check [here](cypress/README.md). This is used to validate user journeys and some other cases.
## Database Schema documentation
As the application evolves, so does the data, and to control the evolution of the database that stores all this new data. To make it in a controllable way, we can apply the same strategy we use for our codebase into our database. To achieve that, we can use tools that will version and apply changes into the database in a controlled way. Team Alliance decided to make use of [Flyway](https://documentation.red-gate.com/flyway) as the de-facto tool to database versioning. This means that we can recreate the database structure as many times as we need, along with basic data that needs to be inserted into the database.
We have the database schema documented using [SchemaSpy](https://schemaspy.org/). This is particularly useful tool for database administrators, developers, and analysts who need to understand the structure and relationships within a database. This allow us to automatically generate a visualization of the database schema through Entity-Relationship (ER) diagrams. These diagrams help users quickly grasp the relationships between tables, making it easier to navigate and understand complex databases.
You can find our database diagram on [this page](https://bcgov.github.io/nr-forest-client/nrfc/relationships.html) and more information about the database on [this page](https://bcgov.github.io/nr-forest-client/)