The starter template for kick-ass apps running on a MERN stack!
Check out a demo at https://www.johnappseed.com/.
You will first need an instance of MongoDB available for the backend api. The easiest way to accomplish that is to use Docker. You can run the following commands to run the latest version of MongoDB.
docker pull mongo
docker run -p 27017:27017 -d mongo
- Clone the repo
- In both the
frontend
andbackend
directories runnpm install
- From the root of the project run
npm run start