This is MERN auth application
It includes the following:
MongoDB URI
- MongoDB AtlasRename the .env.example
file to .env
and add the following
PORT = 4000
MONGO_URI = your mongodb uri
JWT_SECRET = 'abc123'
Change the JWT_SECRET to what you want
cd backend
npm install
cd frontend
npm install
# Run frontend (:3000) & backend (:4000)
npm start
# Create frontend prod build
cd frontend
npm run build