Web front-end of the advisor.ai project, an article search and recommendation platform focused on promoting collaboration between researchers using AI.
The web version of the advisor.ai platform is built with Next.js. Also, it uses pNpm as dependency manager.
In order to run it locally, make shure you have installed
- Node.js
21.7.3
- pNpm
2.12.3
To install the web dependencies, run
pnpm install
To run the development server, execute
pnpm dev
Open http://localhost:3000 with your browser to see the result.
This project is being tested with Vitest.
To run the unit and integration tests, execute
pnpm run test:unit
To see the current test coverage, run
pnpm run coverage
This project uses Biome as code formatter and linter.
In order to validate the code and correct the auto fixable issues, run
pnpm run check