Firstly, thank you for taking the time to contribute.
We welcome contributions from anyone willing to improve this project or add new features.
Contribution guidelines are listed below. Please take the time to go through the guidelines and follow them so that it is easy for maintainers to merge or address your contributions.
To get an idea of the app, feel free to check out the website
A good place to start would be our list of good first issues
- Always check for existing issues before creating a new issue.
- Only start working on an issue if it has been assigned to you. This avoids multiple PRs for the same issue.
- Every change in this project must have an associated issue. Issue before PR
When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license.
To start contributing to this project, follow the steps below.
-
Fork this repository. This will create a local copy of this repository on your github profile.
-
Now clone the forked repository on your local machine
git clone https://github.com/<your-username>/Threadify.git
-
Keep a reference to the original project in
upstream
remote.cd Threadify git remote add upstream https://github.com/pushkaraj2007/Threadify.git
-
If you have created the fork a while ago, synchronize your copy before working.
git remote update git checkout -b main git rebase upstream/main
Creating a new branch lets you work on your issue without creating merge conflicts while making PRs. Select a name for your branch that is in line with the issue you are addressing.
# It will create a new branch with name branch_name and switch to that branch
git checkout -b branch_name
So after setting the upstream branch and creating a new branch, create a .env
file into the root of your project and add the environment variables.
What are environment variables?
These are the variables that a project or a microservice needs to work around some functionalities which contains some token or secret code which is generated by the developer indivdually.
So, these are the environment variables that this project is using:
# MONGO_URI is a mongoDB url that is required for database
MONGO_URI
GITHUB_USER # github username
GITHUB_API_KEY # github API key
# these credentials are required for sending email
MY_EMAIL # email address
MY_PASSWORD # email's app password
# Twitter client ID and client Secret to get access to the twitter
TWITTER_CLIENT_ID
TWITTER_CLIENT_SECRET
BEARER_TOKEN
# This env is for NextJS Authentication
NEXTAUTH_SECRET
- Work on the issue assigned to you.
- Add all the files/folders needed.
- After you've made your contribution to the project add changes to the branch you've just created:
# To add all new files to branch branch_name
git add .
# To add only a few files to branch_name
git add <names of files changed or added>
- To commit this change, give a descriptive message for the convenience of reviewer
# This message will be associated with all files you have changed
git commit -m "message"
# To push your work to your remote repository
git push -u origin branch_name
Go to your repository in the browser and click on compare and pull requests.
This will send a request to the maintainer to add your contribution to the main repository https://github.com/pushkaraj2007/Threadify.git
Add a title to your Pull Request.
Make sure to mention which issue is solved with this Pull Request by mentioning the issue number #. Then add a description to your Pull Request that explains your contribution.
🎉🌟Congratulations! Sit and relax, you've made your contribution to the Threadify project. Wait until the PR is reviewed and incorporate changes suggested by the reviewers. After which the PR can be successfully merged.
If you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about.
- Star the project
- Tweet about it
- Mention this project to your peers