Running the Web
Get to know how you can run the web app!
Last updated
Was this helpful?
Get to know how you can run the web app!
The Web App resides in the apps/web directory. It is powered by NextJS and TypeScript. To run the Web App locally, do the following:
In the project root, run:
pnpm iNext set up the web app for development with:
pnpm dev:webOr cd into apps/web and run:
pnpm devWe use Jest for testing. Run the tests when unit testing, or mock testing the web app separately from the rest of the project.
To run tests in the root, use this command:
pnpm test:webYou can view the web app by opening the http://localhost:6969 URL in a browser.
Last updated
Was this helpful?
Was this helpful?