A MERN (MongoDB, Express, React, Node) boilerplate app with basic CRUD (Create, Read, Update, Delete) routes.
- Fork the repo and clone your clone of the repo
- In your terminal, change directories into the repo directory
- Run
npm i
in the root of the repo directory to install the server-side dependencies - Change directories into the "client" directory and run
npm i
in the root of the repo directory to install the client-side dependdencies - Run
yarn build
to create the build folder in the client folder - Run
yarn start
to fire up React client-side server - In a new terminal tab, change directories back into the root of your project
- Run
yarn start
there to fire up express server app