Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on the README ✨.
This project follows the all-contributors specification. Contributions of any kind are welcome!
Read our Code of Conduct to keep our community approachable and respectable.
In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.
Use the table of contents icon
on the top left corner of this document to get to a specific section of this guide quickly.
To get an overview of the project, read the README. Here are some resources to help you get started with open source contributions:
- Finding ways to contribute to open source on GitHub
- Set up Git
- GitHub flow
- Collaborating with pull requests
Check to see what types of contributions we accept before making changes. Some of them don't even require writing a single line of code ✨.
Discussions are where we have conversations.
If you'd like help troubleshooting a PR you're working on, have a great new idea, or want to share something amazing you've learned in our project, join us in discussions.
Issues are used to track tasks that contributors can help with. If an issue has a triage label, we haven't reviewed it yet and you shouldn't begin work on it.
If you've found something in the docs or the web app that should be updated, search open issues to see if someone else has reported the same thing. If it's something new, open an issue using a template. We'll use the issue to have a conversation about the problem you want to fix or project you want to work on.
Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. View the labels for more information. If you're interested in working on an issue - post a comment and tag @wil-gerard for the assignment.
-
We recommend using VS Code as an editor with the Tailwind IntelliSense Twin Extension which supports twin.macro.
-
Fork the repository or create a new branch.
-
If you are a first time contributor, please fork the repository:
-
Using GitHub Desktop:
- Getting started with GitHub Desktop will guide you through setting up Desktop.
- Once Desktop is set up, you can use it to fork the repo!
-
Using the command line:
- Fork the repo so that you can make your changes without affecting the original project until you're ready to merge them.
-
-
Established contributors, please create a branch directly from the issue you are working on, keep it updated with the latest commits and submit a pull request when ready.
-
-
See the installation and setup guide.
-
Create a working branch referencing issue # and title you're working on. Example:
155-contribution-guide -
Start editing code!
We follow the specifications for Convential Commits. A quick helpful overview:
- The commit structure must include a type and a brief description followed by an optional body message with details. Tip: to make a git commit with a subject and body
git commit -m "this is the subject" -m "this is the body" - Reference issues and pull requests liberally
- Use the present tense ("Add feature" not "Added feature")
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
Commit sample:
refactor(Navbar.tsx): logout redirect (#132)
use navigate function to return to / route
A pull request is a way to suggest changes in our repository. When we merge those changes, they should be deployed to the live site within 24 hours.
When you're finished with the changes, create a pull request, also known as a PR.
- Fill the "Ready for review" template so that we can review your PR. This template helps reviewers understand your changes as well as the purpose of your pull request.
- Don't forget to link PR to issue if you are solving one.
- Enable the checkbox to allow maintainer edits so the branch can be updated for a merge.
- Request @wil-gerard to review Once you submit your PR, a team member will review your proposal. We may ask questions or request for additional information.
- We may ask for changes to be made before a PR can be merged, either using suggested changes or pull request comments. You can apply suggested changes directly through the UI. You can make any other changes in your fork, then commit them to your branch.
- As you update your PR and apply changes, mark each conversation as resolved.
- If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.
Congratulations 🎉🎉 the Git Connected team thanks you ✨.
Once your PR is merged, your contributions will be publicly visible on the README docs.