Ready to jump in? Follow these steps to start contributing:
-
Fork the Repository 🍴
- Click the "Fork" button at the top of the page to fork the repository to your GitHub account.
-
Clone Your Fork 🖥️
- Clone your forked repository to your local machine using:
git clone https://github.com/Bug-Bust3rs
- Clone your forked repository to your local machine using:
-
Create a Branch (Mandatory) 🌿
- It’s mandatory to create a new branch for your changes. Don’t make changes directly to the
master
branch of your fork. Create a new branch with:git checkout -b feature/your-feature-name
- It’s mandatory to create a new branch for your changes. Don’t make changes directly to the
Here are some key areas where you can make a difference:
a. Add a New Feature in Frontend ✨
- We’re always looking to expand our library of frontend components. If you have a cool feature or component that isn’t currently covered, feel free to create and contribute it. Ensure your contribution is well-documented and follows our coding standards.
If you want to add a new frontend feature, please place it inside the src/
directory.
b. Add a New Feature in Backend 🚀
- Have an idea for improving our backend? Whether it’s optimizing code, adding new endpoints, or enhancing existing ones, we’d love your input. Contributions can include performance tweaks, better documentation, or any other improvements you can think of.
If you want to enhance existing backend features or APIs, please work inside the packages/node_server
directories.
c. Fix Bugs in Website 🐛
- Our website helps users understand and use UNITE. You can contribute by fixing bugs, adding new features, or improving the overall design and user experience. If you’re skilled in frontend development, we’d love your help here!
If you want to contribute to the UNITE documentation, please work inside the docs
directory. The src/
subdirectory is for the React js frontend and the packages/node_server
subdirectory is for the Node.js Express backend.
-
Make Your Changes 💻
- Implement your changes in your new branch. Ensure your code follows the project's coding standards and is well-documented.
-
Commit and Push 🚢
- Commit your changes with a clear and descriptive commit message:
git commit -m "Description of your changes"
- Push your changes to your forked repository:
git push origin feature/your-feature-name
- Commit your changes with a clear and descriptive commit message:
-
Create a Pull Request 🔄
- Head back to the original repository on GitHub and create a pull request from your branch to dev branch. Provide a detailed description of your changes and why they should be merged.
You cannot directly push your changes to the main
branch.
All contributions must be made through the dev
branch. If you create a pull request to the main
branch, it will be automatically rejected.
- Fork the repository.
- Clone your forked repository to your local machine.
- Create a new branch from
dev
for your feature or fix. - Commit your changes to the new branch.
- Push your changes to your forked repository.
- Create a pull request from your new branch to the
dev
branch in the main repository.
At First Install concurrently
pnpm add concurrently
Create .env
touch .env
Add Secrets
MONGOURI=mongodb+srv://yourname:[email protected]/?retryWrites=true&w=majority&appName=Finder
JWT_SECRET=askdbvavkhbhksdvkbshvbhjsvjhsbvhbjsdvbhj
JWT_COOKIE_EXPIRES_IN=3d
-
Install All Dependencies 🚢
pnpm install:all
-
Run Project 🚢
pnpm dev:all
-
Run Frontend 🚢
pnpm dev:frontend
-
Run Frontend 🚢
pnpm dev:backend
Thank you for your cooperation and happy coding! 🚀