This is the SEISM Code Challenge private repository.
This repository contains the following documentation:
- This file (README.md)
- The Apache License 2.0 file
- The original Code Challenge Notice, Instructions & Rules file
- A user flow diagram
- A test document
- UI component documentation
- API component documentation
- Database seeding documentation
- Docker Keycloak documentation
(Note that, when the API is running, its Swagger UI page is at http://localhost:3000/api/docs/.)
This repository contains the following software components:
- API code project - this is the API (back end server) component of the application
- UI code project - this is the UI (front end) component of the application
- Keycloak - Docker image to run Keycloak locally
- Run MongoDB - see API documentation for details
- Run Keycloak - see Docker documentation for details
- Build and run the API component - see API documentation for details
- Build and run the UI component - see UI documentation for details
- Set a system environment variable
KeycloakEnabled
tofalse
. - Run MongoDB - see API documentation for details
- Build and run the API component - see API documentation for details
- Build and run the UI component - see UI documentation for details
- Note: At step 5 of "Fork, build and run", instead of
npm start
usenpm run start-noauth
- Note: At step 5 of "Fork, build and run", instead of
This is for deployment to a cloud host and requires access to a Keycloak service (eg, provided by DevExchange group).
This code challenge solution uses the MEAN software stack, namely:
- MongoDB (database)
- Express.js (to serve the API)
- Angular (web application)
- Node.js (to run the API)
In addition, Keycloak is used to provide straightforward OAuth functionality and role mapping. (It can also be configured to provide IDIR federated login.)
The architecture is based on the Angular tutorial, 'Tour of Heroes'.
The code is based on a previous, open-source government project, PRC (https://github.com/bcgov/nrts-prc-admin and https://github.com/bcgov/nrts-prc-api).
The typical user flow through the system is:
- user navigates to the app root URL
- app redirects user to Keycloak site
- user selects authentication using GitHub credentials (or user can enter a Keycloak username and password)
- if user has not previously registered, Keycloak adds a default user profile (with role=siesm_user)
- Keycloak redirects user to the app
- app front end (UI) displays species list page
- UI makes REST call to back end (API) to get data (note: bearer token is automatically added to request)
- API saves user profile to database
- API verifies bearer token (JWT)
- API retrieves species data from database
- API returns data to UI
- UI displays data
- UI makes additional REST calls to create/read/update/delete species data (if user has role=seism_admin)
See this page to configure admin role.