We're thrilled to have you here! Rantr is a fantastic project that's all about ranting. Your contributions are what make this project shine, and we're excited to see what you can bring to the table.
Contributing to Rantr is a piece of cake! Here's a quick guide to get you started:
First things first, you'll need to create your own copy of the project. This is done by "forking" the project on GitHub. Here's how:
- Click here to learn how to fork a repo.
Once you've forked the project, you'll need to set up a remote to your fork. This is where you'll push your changes. Here's the command to do that:
git clone https://github.com/yourusername/rantr-backend.git
git remote add base-project https://github.com/indie-hack-jos/rantr-backend.git
Replace yourusername
with your actual GitHub username.
It's a good practice to create a new branch for each feature or bug fix you're working on. This keeps your work organized and separate from the main project. Here's how to create a new branch:
git checkout -b your-branch-name
Replace your-branch-name
with a descriptive name for your branch.
Now it's time to dive in and make your changes! Remember to follow the project's coding standards and guidelines.
Once you're happy with your changes, it's time to commit them and push them to your fork. Here's how:
git commit -m "feat: Add a new feature"
git push origin your-branch-name
Replace your-branch-name
with the name of your branch, and Add a new feature
with a brief description of your changes.
The final step is to create a pull request (PR) so that we can review your changes and potentially merge them into the main project. Here's how:
- Click here to learn how to create a PR.