This is the final project from my React Front To Back 2022 course on Udemy. Check out the course here.
git clone https://github.com/coltonajackson/support-desk.git
npm install
cd frontend
npm install
cd ..
npm run dev
This will run JSON-server on port :5000 and React on port :3000 (unless defined in .env)
NODE_ENV = YOUR NODE ENVIRONMENT (e.g. 'development')
PORT = YOUR FRONT END PORT NUMBER (e.g. 3000)
REACT_APP_BACKEND_PORT = YOUR BACK END PORT NUMBER (e.g. 5000)
MONGO_URI = YOUR MONGODB CONNECTION URL (e.g. 'mongodb+srv://hello:[email protected]/db')
JWT_SECRET = YOUR JWT SECRET (e.g. 'this_is_a_secret')
View Live Demo on Heroku here.