Welcome to our open source project! We're thrilled that you're interested in contributing. Before you get started, please read through the following guidelines to ensure a smooth and positive contribution process.
-
Fork the repository to your own GitHub account.
-
Clone the forked repository to your local machine:
git clone https://github.com/xcrescent/portfolio_brl_trainees.git
-
Create a new branch for your contribution:
git checkout -b feature/your-feature
-
Make your changes and commit them with a descriptive commit message.
-
Push your changes to your forked repository:
git push origin feature/your-feature
-
Create a pull request (PR) from your forked repository to the main repository.
-
Wait for the maintainers to review your PR. Be patient, as this might take some time.
Please adhere to our Code of Conduct which outlines the behavior expected from contributors.
- Add any new files or make changes in the appropriate directories.
- Do not create files or directories in the root directory unless absolutely necessary.
If you are a BRL Member, please add your information to the brlMembers
list in brl_members.dart
. Include your name, member type, domain, GitHub link, LinkedIn link, and Instagram link.
Example:
const BrlCard(
img: 'https://example.com/your-image.png',
name: 'Your Name',
memberType: 'III Year Member',
domain: 'Your Domain',
git: 'https://github.com/your-github-username',
linked: 'https://www.linkedin.com/in/your-linkedin-profile',
ig: 'https://www.instagram.com/your-instagram-profile',
),
If you are a BRL Trainee, please add your information to the trainees
list in trainee_list.dart
. Include your name, member type, domain, GitHub link, LinkedIn link, and Instagram link.
Example:
const BrlCard(
img: 'https://example.com/your-image.png',
name: 'Your Name',
memberType: 'BRL Trainee',
domain: 'Your Domain',
git: 'https://github.com/your-github-username',
linked: 'https://www.linkedin.com/in/your-linkedin-profile',
ig: 'https://www.instagram.com/your-instagram-profile',
),
If you are an external collaborator, please add your information to the externalColab
list in external_collaborator.dart
. Include your name, member type, domain, GitHub link, LinkedIn link, and Instagram link.
Example:
const BrlCard(
img: 'https://example.com/your-image.png',
name: 'Your Name',
memberType: 'External Collaborator',
domain: 'Your domain',
git: 'https://github.com/your-github-username',
linked: 'https://www.linkedin.com/in/your-linkedin-profile',
ig: 'https://www.instagram.com/your-instagram-profile',
),
Before submitting your PR, please ensure that your changes do not break existing functionality. Test your code thoroughly.
Write clear and descriptive commit messages to summarize the changes you've made.
All PRs will be reviewed by maintainers. Please be patient during this process.
We appreciate your time and effort in contributing to this project. Your contributions make a significant difference! If you have any questions or need further assistance, feel free to reach out.
Happy Hacking! 🎉