A Donation platform that connects donors to people in need. Created using MERN Stack and tailwind CSS.
Clone the Repository
git clone https://github.com/rafayhanan/ConnectAid.git
Install Dependencies
cd front-end
npm install
cd ..
cd back-end
npm install
Create a clustor on MongoDB Atlas
Create .env file in back-end directory
Use a MongoDB connection string and a JWT Secret key
MONGODB_URI = mongodb+srv://<username>:<password>@<cluster-name>.bqydw.mongodb.net/?retryWrites=true&w=majority&appName=<clustor-name>
JWT_SECRET = <your-secret-key>
MONGODB_URI = <your-connection-string>
JWT_SECRET = <your-secret-key>
cd back-end
npm start
cd front-end
npm start