1.) Run npm install on the root to install all developement and production dependencies for the backend.
- NODE_ENV = // value sohould be either developement or production which is used to configure the mode.
- NODE_PORT = // an number you want your server to be running on for me it is 5000.
- MONGO_DEV_URI = // enter a valid mogodb uri for me am using mongodb installed on my local.
- JWT_SECRET = // a random set of string.
3.) cd into the frontend folder and Run npm install to install all production and developement dependencies.
- VITE_BASE_URL = // set this to http://localhost:[your server port number]/api/v1