This project is under construction with MongoDB, Express, Node.js, and React.
git clonethe repository.npm i– install all dependencies.- Generate a
.envfile with the following things:MONGO_CONNECT_URL
- The simplest thing to do is use
npm run dev, which deploys the schema, builds, starts the server, and will launch the app onhttp://localhost:3000, or whateverPORTis set in a your.envfile.
- From the root, if setting up the first time, run
npm run deploy. Follow the in-terminal instructions to resolve setting up Prisma. - Afterwards and for all future runs, run
npm run serverin one terminal, and thennpm run build, thennpm run start.