Welcome to DevEvent Tracker. We appreciate your interest in contributing to this project. This repository is designed to be accessible and supportive for contributors who are new to open source, particularly those participating in the Social Summer of Code (SSOC) program.
Whether you are fixing a typo, resolving a bug, or implementing a new feature, your contributions help make this project more useful for everyone.
- Code of Conduct
- Social Summer of Code (SSOC) Guidelines
- How Can I Contribute?
- Git Workflow and Pull Requests
- Semantic Commit Messages
- Need Help?
By participating in this project, you agree to abide by our Code of Conduct. Please report any unacceptable behavior to the project maintainers.
If you are contributing as part of SSOC, please keep these guidelines in mind:
- Claiming Issues: Before working on any change, browse the active GitHub Issues. Comment on the issue to request assignment. Please do not start working on an issue until a maintainer has officially assigned it to you.
- One Issue at a Time: To ensure all participants have a fair opportunity, please only request to work on one issue at a time.
- Inactive Claims: If there is no activity (such as a linked Pull Request or an update comment) on an assigned issue within three days, the issue may be reassigned to another contributor.
There are several ways you can participate:
- Reporting Bugs: If you find a bug, create an issue using the Bug Report template.
- Suggesting Features: If you have an idea to improve the application, submit a Feature Request.
- Improving Documentation: Updates to setup guides, explanations, or the README are always welcome and highly valued.
- Writing Code: Check out issues labeled "good first issue" or "help wanted."
For a comprehensive tour of the codebase and lists of current tasks, please read our Project Architecture Guide.
Follow these steps to propose changes:
Click the Fork button at the top right of this repository's GitHub page to create a copy of the project under your own GitHub account.
Clone your fork to your local machine:
git clone https://github.com/YOUR_USERNAME/DevEvent_Tracker.git
cd DevEvent_TrackerLink your local repository to the main project to stay updated with changes:
git remote add upstream https://github.com/niharika-mente/DevEvent_Tracker.gitCreate a new branch for your work. Use a descriptive prefix to help identify the purpose of the branch:
feature/your-feature-name(for new features or improvements)fix/bug-fix-name(for bug fixes)docs/doc-update-name(for documentation changes)
git checkout -b feature/your-feature-nameSet up your environment and run the project locally. For detailed setup steps, please refer to the Local Setup Guide. Make your changes, ensuring they align with existing formatting and style guidelines.
Commit your changes using semantic commit messages (see conventions below).
git add .
git commit -m "feat: implement booking page navigation"Before pushing, pull the latest changes from the upstream main branch to avoid conflicts:
git checkout main
git pull upstream main
git checkout feature/your-feature-name
git merge mainResolve any merge conflicts if they occur.
Push your local branch to your GitHub fork:
git push origin feature/your-feature-name- Navigate to the original DevEvent Tracker Repository on GitHub.
- You will see a prompt to compare and open a Pull Request.
- Complete the Pull Request template, referencing the issue you resolved (for example,
Closes #12). - Wait for feedback from the maintainers and respond politely to any requests for changes.
Using clear, semantic commits makes the project history easier to navigate:
| Prefix | Purpose | Example |
|---|---|---|
feat |
A new feature | feat: add share button to event page |
fix |
A bug fix | fix: resolve crash on null event description |
docs |
Documentation changes only | docs: clarify mongodb Atlas connection steps |
style |
Layout formatting or spacing changes (no code logic changes) | style: fix alignment of search bar |
refactor |
Code reorganization (neither fixes a bug nor adds a feature) | refactor: clean up database index schemas |
test |
Adding missing tests or correcting existing tests | test: add verification for event action filters |
If you run into issues or have questions:
- Comment on the GitHub issue assigned to you.
- Reach out in the designated SSOC community communication channels.
- Remember that every question is welcome. We are all here to learn and collaborate.