Offical repo of Blogs, made by Technobyte.
- clone the repo after forking it
git clone https://github.com/<your-username>/<repository-name>.git- Install the dependencies
go to the client and server folder and run npm install
cd client # or cd server
npm installOR RUN
npm run install:all- Create a
.envfile in the server folder and add the following
cp .env.example .envAnd add all required environment variables in the .env file
Tip
You can get the MONGODB_URI from MongoDB Atlas
OR
If you have MongoDB installed locally, you can set the MONGODB_URI to mongodb://localhost:27017/<database-name>
OR
Run docker compose up -d to start a MongoDB container and set the MONGODB_URI to `mongodb://localhost:27017/
- Run the project
go to the client and server folder and run npm start
cd client # or cd server
npm devOR RUN
npm run dev:allVisit the CONTRIBUTING.md file to know how to contribute to this repository.
- React
- Node.js
- Express
- MongoDB
This project is licensed under the MIT License - see the LICENSE file for details.