This is a demo application that shows how to use Cypress to run end-to-end, component, and API tests against an application.
The app is a mono repo that uses npm workspaces. Once you clone the project, install the dependencies at the root folder:
npm install
After that a few more things need to be set up (databases and such), to do so run:
npm run setup
To launch the app for development, run:
npm run dev
This will start both the client and server apps in dev mode. The site will be available at http://localhost:3000.
The Cypress Heroes app consists of a frontend client app written in React that uses Vite, as well as a backend app that uses NestJS.
The React client app is located in the client folder. It is a standard React Vite app.
Todo: fill out
The server app is in the server folder. It is built with the NestJS Node.js framework. It uses Prisma for the database ORM.
The database is seeded from the server/prisma/seed.ts script when you set up the app. If at any time you want to reset the database back to its initial state, run:
npm run resetdb
The client app uses an environment variable to know what the URL is for the
backend api named VITE_API_URL
. It defaults to "http://localhost:3001" for use
in dev mode, and should be overriden in other environments/modes.