Skip to content

Latest commit

Β 

History

History
190 lines (137 loc) Β· 7.16 KB

CONTRIBUTING.md

File metadata and controls

190 lines (137 loc) Β· 7.16 KB

DevProfiles πŸ‘©β€πŸ’»πŸ‘¨β€πŸ’»

DevProfiles is a platform to list and showcase your developer skills and profiles, allowing you to create a personalized profile to highlight your projects, and expertise. It's designed to help developers connect with collaborators, and the wider developer community.


Contributing Guidelines πŸ“„

This documentation contains a set of guidelines to help you during the contribution process. We are happy to welcome all the contributions from anyone willing to improve/add new scripts to this project. Thank you for helping out and remember, no contribution is too small.

  • Drop a Star ⭐ in this repo

  • Follow Account -https://github.com/Gyanthakur

  • Take a look at the existing Issues or Create an Issue of your own.

  • At first raise an issue in which you want to work and wait till its is assigned to you

  • Then after being assigned issue,work on it & make a PR

  • Create a Pull Request, which will be promptly reviewed by the maintainer

  • Suggestion: Add screenshots or screen captures to your Pull Request to help us understand the effects of the changes that are included in your commits.


Steps to making a PR

1. Start by forking the Dev_Profiles repository. Click on the symbol at the top right corner.

2. Clone your forked repository to your local environment:

git clone https://github.com/[your-username]/Dev_Profiles.git

3. Add a reference(remote) to the original repository:

git remote add upstream https://github.com/GyanthakurDev_Profiles

4. Check the remotes for this repository:

git remote -v

5.Always take a pull from the upstream repository to your master branch to keep it at par with the main project (updated repository).

git pull upstream main

6.Create a Branch:

git checkout -b <Branch-name>

7. Make Changes and Add them:


- After you have made your changes, check the status of the changed files using the following command:
```sh
git status -s
```
git add .
git add <filename>

8.Commit your Changes with a descriptive commit message:

git commit -m <Concise Description of the changes made>

9. Push Changes: Push your changes to your forked repository:

git push origin <Branch-name>

10. Submit a Pull Request: Go to your forked repository on GitHub and submit a pull request. Be sure to provide a detailed description of your changes and why they are necessary.

11.Congratulations! You've made contribution! πŸ™ŒπŸΌ


Want to add your Profile to Dev_Profiles ?

Simply add following code to HTML index.html between another <!--Profiles--> comment

1. before adding profile or project, update or sync your branch by clicking Sync forkbutton image

2.and keep in mind don't add in top and bottom your profile, add in between.

        <div class="profile">
            <div class="lines"></div>
            <!-- change './default.png' to your profile image url -->
            <div class="pfp"><img src="./default.png" alt="User Image"></div>
            <h3 class="name">Your Name</h3>
            <div class="skills">
                <span class="skill">[SKILL-1]</span>
                <span class="skill">[SKILL-2]</span>
                <span class="skill">[SKILL-3]</span>
                <span class="skill">[SKILL-3]</span>
                <span class="skill">[SKILL-3]</span>
            </div>
            <div class="social">
                <a href="[YOUR GITHUB URL]" target="_blank"><i class="fa-brands fa-github"></i></a>
                <a href="[YOUR X/TWITTER URL]" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
                <a href="[YOUR LINKEDIN URL]" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
                <a href="[YOUR FACEBOOK URL]" target="_blank"><i class="fa-brands fa-facebook"></i></a>
        </div>
    </div>

Note: Do not add your profile in top.

3. Change/Replace the placeholders with your image and profiles urls**

- [IMAGE-URL] with your image URL
- [YOUR_NAME] with your name
- [SKILL-1], [SKILL-2], [SKILL-3] with your skills
- [YOUR GITHUB URL], [YOUR X/TWITTER URL] & [YOUR LINKEDIN URL] with your Github, X/Twitter & LinkedIn profile URL repectively.

and your project in project.html as follows and keep in mind don't add in top and bottom your project, add in between another project.

        <div class="profile">
            <div class="lines"></div>
            <!-- change './default.png' to your profile image url -->
            <div class="pfp"><img src="./default.png" alt="User Image"></div>
            <h3 class="name">Your Name</h3>
            <div class="project">
                <a href="[Your Github URL]" target="_blank"><i class="fa-brands fa-github"></i></a>
                <a href="[Your Github Repository URL]" target="_blank"><i class="fa-solid fa-money-bill-transfer"></i></a>
                <a href="[Project Deploy URL(If applicable)]" target="_blank"><i class="fa-brands fa-octopus-deploy"></i></a>
            </div>
            <div class="projectNam">
                <span >Your Project Title</span>
                <!-- Do not change Repo URl and Dploy Link given under two line  -->
                <span >Repo Url</span>
                <span >Deploy Link</span>
            </div>
            <div class="skills">
                <span class="skill">Skill-1</span>
                <span class="skill">Skill-2</span>
                <span class="skill">Skill-3</span>
                <span class="skill">Skill-4</span>

            </div>
            <div class="social">
                <a href="[YOUR GITHUB URL]" target="_blank"><i class="fa-brands fa-github"></i></a>
                <a href="[YOUR X/TWITTER URL]" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
                <a href="[YOUR LINKEDIN URL]" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
                <a href="[YOUR FACEBOOK URL]" target="_blank"><i class="fa-brands fa-facebook"></i></a>
            </div>
        </div>

4. Commit your changes.

5. Push the changes.

6. Create a Pull Request.

7. Wait for Merge.

Need Help? Contact Me!

If you have any query or confusion, you can WhatsApp me by clicking the button below:

WhatsApp

Or reach me directly at this whatsapp number: +91 895-7818-597

Thank You!!!

Thank you to every contributor of this repository
Show some love by giving a star ⭐ to this repository!