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