Before building or running the application, you need to have some prerequisites installed on your system.
The project is built with Vite, which requires Node.js version 14.18 or higher. It is recommended to update Node and npm to the latests versions available.
On Windows, you can follow the npm Docs to install Node and npm.
On Debian-based systems (such as Ubuntu), you can install Node and npm with:
sudo apt update
sudo apt install nodejs npm
Both prerequisites can be installed on Fedora with:
sudo dnf install nodejs
After downloading Node and npm, the program can be installed with:
cd assisdent-web-client
npm install
When developing, the project can be run with:
npm run dev
To build the project into ./dist
and to preview the built application, run:
npm run build
npm run preview
To deploy the application in Vercel, you need to have an account in Vercel and a project in Vercel. You can create a project in Vercel by importing the project from Github.
Another option is to deploy the application to Vercel by utilizing Github Actions, as it is currently done. You need to add the following secrets to your Github repository:
VERCEL_PROJECT_ID
: The project ID of your Vercel project. You can find the project ID in the project settings in Vercel.VERCEL_ORG_ID
: The organization ID of your Vercel organization. You can find the organization ID in the organization settings in Vercel.VERCEL_TOKEN
: A Vercel token with the following permissions: read
, deployments
, projects
, team
. You can create a new token in the Vercel settings.After adding the secrets, you can deploy the application (production version) to Vercel by pushing to main
or development
branch. The deployment will be triggered by a Github Actions workflow provided.
Pushing to other branches will trigger Preview deployment in Vercel. Deployment strategy can be changed in the workflow files in .github/workflows
folder.
Further instructions for deploying to Vercel can be found here.
To run tests, run:
npm test
Linter can be run with:
npm run lint
Running the tests produces a test report in two formats in /reports
.
The reports are in .xml and .html formats,
and they include same information: the amount of passing, failed and skipped tests. The reports are
generated also on a push to main
or development
.
The output can be viewed in three ways:
Locally
/reports
folder. This can be done by opening the html file in a browser.CI/CD pipeline, on a push to main
or development
.
A new (unit or integration) test can be added by creating a new file under
/src/test
. Jest and React Testing Library functionality can be utilized.
When running the tests, Jest will look for files ending in .test.tsx
in
the test directory.
Environment variables are stored in .env
. Change the values to match
the development environment there.
VITE_ASSISCARE_USER username for AssisCare authentication
VITE_ASSISCARE_PASS password for AssisCare authentication
VITE_ASSISCARE_BASE base URL of the AssisCare REST API
VITE_ASSISCARE_ROUTE URI path to project course endpoint