diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 2023735..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 212c716..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -name: "Issue Template" -about: "Report a bug πŸ› | Suggest an enhancement πŸ’‘ | Request a feature πŸš€" -title: "[ISSUE] - Short Description" -labels: bug, enhancement, question -assignees: '' ---- - -## πŸ“ Description - - ---- - -## πŸ“Έ Screenshot or Visual Reference (optional) - - ---- - -## πŸ› Bug Report (if applicable) - - -- **Steps to Reproduce:** - 1. Step 1 - 2. Step 2 - 3. Step 3 -- **Expected Behavior:** What you expected to happen. -- **Actual Behavior:** What actually happened. -- **Environment:** - - Browser/OS: - - Device: - - Version (if applicable): - ---- - -## πŸ’‘ Enhancement / Feature Request (if applicable) - - -**Why is this needed?** -_Explain how this will improve the project or user experience._ - -**Proposed Solution:** -_Describe your proposed idea or approach clearly._ - ---- - -## πŸ”— Related Pull Requests - - - - - ---- - -## 🌐 Additional Context - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 852cdf0..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,39 +0,0 @@ - -## Description - -Please include a summary of the changes and the related issue(s) this pull request addresses. Include any relevant context or background information. - -Fixes: #[issue_number] (replace with the issue number, if applicable) - -Use [x] to represent a checked (ticked) box.βœ… -Use [ ] to represent an unchecked box.❌ - -## Type of Change - -- [ ] Profile Added -- [ ] Project Added -- [ ] Bug fix -- [ ] New feature -- [ ] Documentation update -- [ ] Other (please specify): - -## How to Test - -Provide a brief description of how to test your changes. Include steps, commands, or screenshots if necessary. - -1. Step 1 -2. Step 2 -3. Step 3 - -## Checklist - -- [ ] I have performed a self-review of my code. -- [ ] I have commented my code, particularly in hard-to-understand areas. -- [ ] I have made corresponding changes to the documentation (if applicable). -- [ ] My changes generate no new warnings. -- [ ] I have added tests to cover my changes (if applicable). -- [ ] All new and existing tests pass. - -## Additional Notes - -Please add any other information that is relevant to this pull request, including potential risks, alternative solutions considered, or future improvements. diff --git a/.github/ruleset.json b/.github/ruleset.json deleted file mode 100644 index efd9920..0000000 --- a/.github/ruleset.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "Repository Contribution Ruleset", - "version": "1.0.0", - "description": "Ruleset for maintaining contribution standards, issue management, and PR validation.", - "rules": { - "pull_request": { - "require_issue_reference": true, - "required_labels": ["hacktoberfest", "hacktoberfest-accepted"], - "forbidden_labels": ["invalid", "duplicate", "wontfix"], - "min_commits": 1, - "checklist_required": true, - "file_changes_limit": 50, - "branch_protection": { - "protected_branches": ["main", "master"], - "require_reviews": true, - "required_approvals": 1 - } - }, - "issues": { - "required_labels": ["bug", "enhancement", "documentation", "question"], - "forbidden_labels": ["invalid", "duplicate"], - "issue_template_required": true, - "stale_issue_days": 30 - }, - "commits": { - "message_format": "^[A-Z].{10,}$", - "forbid_force_push": true, - "require_signed_commits": false - }, - "repository": { - "require_code_of_conduct": true, - "require_contributing_md": true, - "require_readme": true, - "require_license": true, - "topics_required": ["hacktoberfest", "open-source", "contributions"], - "auto_labeling": true - }, - "auto_actions": { - "on_issue_opened": ["add 'good first issue' if labeled 'enhancement'"], - "on_pr_opened": ["add 'hacktoberfest' label"], - "on_pr_merged": ["thank contributor", "close linked issues"] - } - }, - "messages": { - "pull_request_check_failed": "❌ Pull request does not meet repository contribution standards.", - "pull_request_check_passed": "βœ… Pull request validated successfully.", - "issue_check_failed": "⚠️ Please follow the issue template and add appropriate labels.", - "auto_thank_you": "πŸŽ‰ Thank you for contributing to this project! Your efforts make open-source better." - } -} diff --git a/.github/workflows/author-assign.yml b/.github/workflows/author-assign.yml new file mode 100644 index 0000000..867a49b --- /dev/null +++ b/.github/workflows/author-assign.yml @@ -0,0 +1,13 @@ +name: 'Author Assign' + +on: + pull_request_target: + types: [opened, reopened] + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v1.1.0 + with: + repo-token: '${{ secrets.GITHUB_TOKEN }}' \ No newline at end of file diff --git a/.github/workflows/autoAssign.yml b/.github/workflows/autoAssign.yml deleted file mode 100644 index 29f43e1..0000000 --- a/.github/workflows/autoAssign.yml +++ /dev/null @@ -1,63 +0,0 @@ -name: Auto Assign Issues and PRs - -on: - pull_request_target: - types: [opened, reopened] # Use pull_request_target for higher permissions - pull_request: - types: [opened, reopened] # Trigger on opened and reopened PRs - issues: - types: [opened] # Trigger on issue open events - -permissions: - issues: write - pull-requests: write - -jobs: - auto-assign: - runs-on: ubuntu-latest - - steps: - # Step to add logging for debugging - - name: Log context for debugging - uses: actions/github-script@v6 - with: - script: | - console.log("Event Payload:"); - console.log(JSON.stringify(context.payload, null, 2)); // Log the entire payload for debugging - - - name: Assign the issue or PR - uses: actions/github-script@v6 - with: - script: | - const assignee = context.payload.sender.login; // Get the username of the contributor - console.log("Attempting to assign to:", assignee); // Log the assignee for debugging - - try { - if (context.eventName === 'pull_request_target' || context.eventName === 'pull_request') { - // Assign the pull request to the contributor - const pullRequestNumber = context.payload.pull_request.number; - - await github.rest.issues.addAssignees({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: pullRequestNumber, - assignees: [assignee] - }); - console.log(`PR #${pullRequestNumber} successfully assigned to ${assignee}`); - } else if (context.eventName === 'issues') { - // Assign the issue to the contributor - const issueNumber = context.payload.issue.number; - - await github.rest.issues.addAssignees({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: issueNumber, - assignees: [assignee] - }); - console.log(`Issue #${issueNumber} successfully assigned to ${assignee}`); - } - } catch (error) { - console.error("Error during assignment:", error); - } - - diff --git a/.github/workflows/autoLabling.yml b/.github/workflows/autoLabling.yml deleted file mode 100644 index d61fcad..0000000 --- a/.github/workflows/autoLabling.yml +++ /dev/null @@ -1,201 +0,0 @@ -name: Auto Label Issues and PRs - -permissions: - issues: write - pull-requests: write - -on: - pull_request_target: - types: - - opened - issues: - types: - - opened - -jobs: - auto-label: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Add default labels to PRs - if: github.event_name == 'pull_request_target' - uses: actions/github-script@v6 - with: - script: | - const labels = ['hacktoberfest_2024', 'hacktoberfest-accepted', 'hacktoberfest']; - github.rest.issues.addLabels({ - issue_number: context.payload.pull_request.number, - owner: context.repo.owner, - repo: context.repo.repo, - labels: labels - }).catch(err => { - console.error("Error adding labels to PR:", err); - }); - - - name: Add default labels to Issues - if: github.event_name == 'issues' - uses: actions/github-script@v6 - with: - script: | - const labels = ['hacktoberfest_2024', 'hacktoberfest-accepted', 'hacktoberfest']; - github.rest.issues.addLabels({ - issue_number: context.payload.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - labels: labels - }).catch(err => { - console.error("Error adding labels to Issue:", err); - }); - - label-prs: - runs-on: ubuntu-latest - - steps: - - name: Determine PR Label - id: set-label - run: | - if [[ "${{ github.event.pull_request.title }}" =~ bug ]]; then - echo "label=bug" >> $GITHUB_ENV - elif [[ "${{ github.event.pull_request.title }}" =~ documentation ]]; then - echo "label=documentation" >> $GITHUB_ENV - elif [[ "${{ github.event.pull_request.title }}" =~ enhancement ]]; then - echo "label=enhancement" >> $GITHUB_ENV - elif [[ "${{ github.event.pull_request.title }}" =~ hacktoberfest ]]; then - echo "label=hacktoberfest" >> $GITHUB_ENV - fi - - label-issues: - runs-on: ubuntu-latest - - steps: - - name: Determine Issue Label - id: set-label - run: | - if [[ "${{ github.event.issue.title }}" =~ bug ]]; then - echo "label=bug" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ "Something isn't working" ]]; then - echo "label='Something isn't working'" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ documentation ]]; then - echo "label=documentation" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ "Improvements or additions to documentation" ]]; then - echo "label='Improvements or additions to documentation'" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ duplicate ]]; then - echo "label=duplicate" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ enhancement ]]; then - echo "label=enhancement" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ "good first issue" ]]; then - echo "label='good first issue'" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ hacktoberfest ]]; then - echo "label=hacktoberfest" >> $GITHUB_ENV - elif [[ "${{ github.event.issue.title }}" =~ question ]]; then - echo "label=question" >> $GITHUB_ENV - fi - - -# name: Auto Label Issues and PRs - -# permissions: -# issues: write -# pull-requests: write - -# on: -# pull_request: -# types: -# - opened -# issues: -# types: -# - opened - -# jobs: -# auto-label: -# runs-on: ubuntu-latest - -# steps: -# - name: Checkout repository -# uses: actions/checkout@v4 - -# - name: Add default labels to PRs -# if: github.event_name == 'pull_request' -# uses: actions/github-script@v6 -# with: -# script: | -# const labels = ['Hactoberfest_2024', 'Hactoberfest-accepted', 'Hactoberfest']; -# if (labels.length > 0) { -# github.rest.issues.addLabels({ -# issue_number: context.payload.pull_request.number, -# owner: context.repo.owner, -# repo: context.repo.repo, -# labels: labels -# }).catch(err => { -# console.error("Error adding labels to PR:", err); -# }); -# } else { -# console.log("No labels to add for PR"); -# } - -# - name: Add default labels to Issues -# if: github.event_name == 'issues' -# uses: actions/github-script@v6 -# with: -# script: | -# const labels = ['Hactoberfest_2024', 'Hactoberfest-accepted', 'Hactoberfest']; -# if (labels.length > 0) { -# github.rest.issues.addLabels({ -# issue_number: context.payload.issue.number, -# owner: context.repo.owner, -# repo: context.repo.repo, -# labels: labels -# }).catch(err => { -# console.error("Error adding labels to Issue:", err); -# }); -# } else { -# console.log("No labels to add for Issue"); -# } - -# label-prs: -# runs-on: ubuntu-latest - -# steps: -# - name: Determine PR Label -# id: set-label -# run: | -# if [[ "${{ github.event.pull_request.title }}" =~ bug ]]; then -# echo "label=bug" >> $GITHUB_ENV -# elif [[ "${{ github.event.pull_request.title }}" =~ documentation ]]; then -# echo "label=documentation" >> $GITHUB_ENV -# elif [[ "${{ github.event.pull_request.title }}" =~ enhancement ]]; then -# echo "label=enhancement" >> $GITHUB_ENV -# elif [[ "${{ github.event.pull_request.title }}" =~ hacktoberfest ]]; then -# echo "label=hacktoberfest" >> $GITHUB_ENV -# fi - -# label-issues: -# runs-on: ubuntu-latest - -# steps: -# - name: Determine Issue Label -# id: set-label -# run: | -# if [[ "${{ github.event.issue.title }}" =~ bug ]]; then -# echo "label=bug" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ "Something isn't working" ]]; then -# echo "label='Something isn't working'" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ documentation ]]; then -# echo "label=documentation" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ "Improvements or additions to documentation" ]]; then -# echo "label='Improvements or additions to documentation'" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ duplicate ]]; then -# echo "label=duplicate" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ enhancement ]]; then -# echo "label=enhancement" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ "good first issue" ]]; then -# echo "label='good first issue'" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ hacktoberfest ]]; then -# echo "label=hacktoberfest" >> $GITHUB_ENV -# elif [[ "${{ github.event.issue.title }}" =~ question ]]; then -# echo "label=question" >> $GITHUB_ENV -# fi - diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 1495dab..ee1b39d 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,115 +1,22 @@ -name: 'Greetings' - -on: - push: - branches: - - '**' - issues: - types: [opened] - pull_request_target: - branches: - - '**' - types: [opened] - -permissions: - issues: write - pull-requests: write - contents: read - -jobs: - welcome: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Send Welcome Message - uses: EddieHubCommunity/gh-action-community/src/welcome@main - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: | - Welcome, @${{ github.actor }}! Thanks for raising the issue. - Soon the maintainers/owner will review it and provide you with feedback/suggestions. - Make sure to **star this awesome repository** and **follow the account!** - pr-message: | - Great job, @${{ github.actor }}! Thanks for creating the pull request. - Soon the maintainers/owner will review it and provide you with feedback/suggestions. - Make sure to **star this awesome repository** and **follow the account!** - - -# name: 'Greetings' - -# on: -# push: -# branches: -# - '**' -# issues: -# types: [opened] # Trigger on issue opened event -# pull_request: -# branches: -# - '**' -# types: [opened] - -# permissions: -# issues: write -# pull-requests: write - -# jobs: -# welcome: -# runs-on: ubuntu-latest - -# steps: -# - uses: actions/checkout@v4 # Updated to the latest version - -# - name: Send Welcome Message -# uses: EddieHubCommunity/gh-action-community/src/welcome@main -# with: -# github-token: ${{ secrets.GITHUB_TOKEN }} -# issue-message: | -# Welcome, @${{ github.actor }}! Thanks for raising the issue. -# Soon the maintainers/owner will review it and provide you with feedback/suggestions. -# Make sure to **star this awesome repository** and **follow the account!** -# pr-message: | -# Great job, @${{ github.actor }}! Thanks for creating the pull request. -# Soon the maintainers/owner will review it and provide you with feedback/suggestions. -# Make sure to **star this awesome repository** and **follow the account!** - # footer: 'Make sure to stay involved and contribute to the project!' - - - - - -# name: 'Greetings' - -# on: -# push: -# branches: -# - '**' # Trigger on all branches for push events -# issues: -# types: [opened] # Trigger on issue opened events -# pull_request: -# branches: -# - '**' # Trigger on pull request opened for all branches -# types: [opened] # Trigger on pull request events like opened, reopened if needed - -# permissions: -# issues: write -# pull-requests: write # Ensure pull request permissions are explicitly set to 'write' - -# jobs: -# welcome: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v1 -# - uses: EddieHubCommunity/gh-action-community/src/welcome@main -# with: -# github-token: doler{{ secrets.GITHUB_TOKEN }} # Ensure the token is set -# issue-message: | -# Welcome, @doler{{ github.actor }}! Thanks for raising the issue. -# Soon the maintainers/owner will review it and provide you with feedback/suggestions. -# Make sure to **star this awesome repository** and **follow the account** for updates! -# pr-message: | -# Great job, @doler{{ github.actor }}! Thanks for creating the pull request. -# Soon the maintainers/owner will review it and provide you with feedback/suggestions. -# Make sure to **star this awesome repository** and **follow the account** for updates! -# footer: 'Make sure to stay involved and contribute to the project!' +name: 'Greetings' + +on: + fork: + push: + branches: [main] + issues: + types: [opened] + pull_request_target: + types: [opened] + +jobs: + welcome: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: EddieHubCommunity/gh-action-community/src/welcome@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Welcome, @${{ github.actor }}! Thanks for raising the issue!' + pr-message: 'Great job, @${{ github.actor }}! Thanks for creating the pull request!' + footer: 'Soon the maintainers/owner will review it and provide you with feedback/suggestions, Make sure to star this awesome repository' \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1ae5f43..0000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/node_modules -node_modules -./node_modules -node_modules \ No newline at end of file diff --git a/.hintrc b/.hintrc deleted file mode 100644 index aa8de6b..0000000 --- a/.hintrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extends": [ - "development" - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f673a71..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "liveServer.settings.port": 5502 -} \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 772098b..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,190 +0,0 @@ -# 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](https://github.com/Gyanthakur/Dev_Profiles/issuess) 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**](https://github.com/Gyanthakur/Dev_Profiles) repository. Click on the symbol at the top right corner.** - -## **2. Clone your forked repository to your local environment:** - -```bash -git clone https://github.com/[your-username]/Dev_Profiles.git -``` - -## **3. Add a reference(remote) to the original repository:** - -```bash -git remote add upstream https://github.com/GyanthakurDev_Profiles -``` - -## **4. Check the remotes for this repository:** - -```bash -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).** - -```bash -git pull upstream main -``` - -## **6.Create a Branch:** -```bash -git checkout -b -``` - -## **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 - ``` -```bash -git add . -git add -``` - -## **8.Commit your Changes with a descriptive commit message:** - -```bash -git commit -m -``` - -## **9. Push Changes: Push your changes to your forked repository:** - -```bash -git push origin -``` - -## **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**](https://github.com/Gyanthakur/Dev_Profiles) ?** - -Simply add following code to HTML `index.html` between another `` comment - -**1. before adding profile or project, update or sync your branch by clicking `Sync fork`button - image** - - -2.and keep in mind don't add in top and bottom your profile, add in between. - -```html -
-
- -
User Image
-

Your Name

-
- [SKILL-1] - [SKILL-2] - [SKILL-3] - [SKILL-3] - [SKILL-3] -
- -
-``` -> 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. - -```html -
-
- -
User Image
-

Your Name

-
- - - -
-
- Your Project Title - - Repo Url - Deploy Link -
-
- Skill-1 - Skill-2 - Skill-3 - Skill-4 - -
- -
-``` - - - -## **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! diff --git a/README.md b/README.md index b7bbf88..a51211f 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,21 @@ # DevProfiles -A place to list and showcase your developer skills and profile +A place to list and shocase your developer skills and profile -## Contribute. +## Contribute 1. Give Star on the repo 2. Follow Account 3. Fork this Repository -4. Create Issue - -5. add following code to HTML `index.html` between another `` comment - -6. before adding profile or project, update or sync your branch by clicking `Sync fork`button - image - +4. add following code to HTML `index.html` just before `` comment -## 5.and keep in mind don't add in top and bottom your profile, add in between. +# 5.and keep in mind don't add in top and bottom your profile, add in between ```html
-
- -
User Image
+
User Image

Your Name

[SKILL-1] @@ -47,64 +39,14 @@ A place to list and showcase your developer skills and profile - [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. - -```html -
-
-
User Image
-

Gyan Pratap Singh

-
- - - -
-
- Your Project Title - - Repo Url - Deploy Link -
-
- Skill-1 - Skill-2 - Skill-3 - Skill-4 - -
- -
-``` - - - 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** +5. Create a Pull Request +6. Wait for Merge ## Thank You Thank you to every contributor of this repository
-Show some love by giving a star ⭐ to this repository! +Show some love by giving a ⭐ to this repository! diff --git a/about-us.html b/about-us.html deleted file mode 100644 index ab84c51..0000000 --- a/about-us.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - Projects - - - - - - - - - - -
-
-
- - - -
- -
- - - -
- -
- -
Visitors: 0
-
- - - - -

- -
-
-
-

What is DevProfiles?

-

- DevProfiles is an open-source platform where - developers can showcase their skills, profiles, and projects. It's a - great place to contribute, learn from others, and be part of a - thriving developer community. -

-
- -
-

Our Mission

-

- We aim to create a comprehensive collection of developer profiles - from around the world. The goal is to allow everyone to display - their skills, contribute to open-source projects, and connect with - like-minded professionals. -

-
- -
-

How You Can Contribute

-

- We encourage developers to add their profiles and projects following - these steps: -

-
    -
  1. Fork the repository.
  2. -
  3. - Sync your branch before making changes - by clicking the "Sync Fork" button. -
  4. -
  5. - Add your profile or project - between the specified sections in the `index.html` and - `project.html` files, following the instructions in the README. -
  6. -
  7. - Commit and push your changes to your - fork. -
  8. -
  9. - Create a Pull Request and wait - for it to be merged! -
  10. -
-
- -
-

Contact Us

-

- If you have any questions or need assistance, feel free to reach out - to us via the - GitHub Repository - -

-
-
-
- -

- - - - - - - - - - - diff --git a/action.yml b/action.yml deleted file mode 100644 index a1cf748..0000000 --- a/action.yml +++ /dev/null @@ -1,26 +0,0 @@ -# File location: action.yml -name: 'Greeting Action' -description: 'This action greets users when they open issues or pull requests.' -author: 'Your Name' - -inputs: - github-token: - description: 'GitHub token for authentication.' - required: true - issue-message: - description: 'The message to post when an issue is opened.' - required: true - pr-message: - description: 'The message to post when a pull request is opened.' - required: true - footer: - description: 'Optional footer message to include in the greeting.' - required: false - -runs: - using: 'node16' - main: 'index.js' # This points to the script that executes the action logic - -branding: - icon: 'wave' - color: 'blue' diff --git a/assets/Moon.png b/assets/Moon.png deleted file mode 100644 index 1efff59..0000000 Binary files a/assets/Moon.png and /dev/null differ diff --git a/assets/Sun.png b/assets/Sun.png deleted file mode 100644 index 32f13fc..0000000 Binary files a/assets/Sun.png and /dev/null differ diff --git a/assets/dark.png b/assets/dark.png deleted file mode 100644 index 09797a7..0000000 Binary files a/assets/dark.png and /dev/null differ diff --git a/assets/default.png b/assets/default.png deleted file mode 100644 index fbb2354..0000000 Binary files a/assets/default.png and /dev/null differ diff --git a/assets/gratisography-cyber-kitty-800x525.jpg b/assets/gratisography-cyber-kitty-800x525.jpg deleted file mode 100644 index 7c6b852..0000000 Binary files a/assets/gratisography-cyber-kitty-800x525.jpg and /dev/null differ diff --git a/assets/hacktoberpic.jpeg b/assets/hacktoberpic.jpeg deleted file mode 100644 index 849ac7e..0000000 Binary files a/assets/hacktoberpic.jpeg and /dev/null differ diff --git a/assets/kuber.png b/assets/kuber.png deleted file mode 100644 index 5ee83cf..0000000 Binary files a/assets/kuber.png and /dev/null differ diff --git a/assets/light.png b/assets/light.png deleted file mode 100644 index d014c5f..0000000 Binary files a/assets/light.png and /dev/null differ diff --git a/assets/om.jpg b/assets/om.jpg deleted file mode 100644 index 9983588..0000000 Binary files a/assets/om.jpg and /dev/null differ diff --git a/assets/red.jpeg b/assets/red.jpeg deleted file mode 100644 index c7262a0..0000000 Binary files a/assets/red.jpeg and /dev/null differ diff --git a/contact-us.html b/contact-us.html deleted file mode 100644 index 4ac8ccb..0000000 --- a/contact-us.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - Contact Us - - - - - - - - - - - -
- -
- -
- -
Visitors: 0
-
- -
-
-
-

Get In Touch

-

We'd love to hear from you. Here's how you can reach us...

- - - +91 895 781 8597 - - - - gps.96169@gmail.com - - - - Fatehpur, Uttar Pradesh, India - -
- -
-

Send us a message

-
-
- -
-
- -
-
- -
-
- -
-
-
-
- - -
-
- - - - - - - - - diff --git a/faq.html b/faq.html deleted file mode 100644 index 4ddc200..0000000 --- a/faq.html +++ /dev/null @@ -1,634 +0,0 @@ - - - - - - FAQ - Developer Hub - - - - - - - - - - - - - -
-
-
- - -
- -
- - -
-
-

Frequently Asked Questions

-

Find answers to common questions about our platform

- -
-
General
-
Profile Management
-
Contributing
-
Technical
-
- -
- -
-
-
-

What is Dev Profiles?

- -
-
-

Dev Profiles is a platform where developers can showcase their skills, projects, and social profiles. It's a centralized hub for developers to create and share their professional profiles with the community.

-
-
- -
-
-

Is Dev Profiles free to use?

- -
-
-

Yes, Dev Profiles is completely free to use. There are no hidden fees or premium tiers. Our goal is to provide an accessible platform for all developers.

-
-
- -
-
-

How do I get started?

- -
-
-

To get started, visit our GitHub repository and follow the contribution guidelines. You'll need to create a JSON file with your profile information and submit a pull request.

-
-
- -
-
-

Can I customize my profile?

- -
-
-

Yes, you can customize various aspects of your profile including your bio, skills, projects, and social links. The platform supports a wide range of customization options.

-
-
-
- - -
-
-
-

How do I update my profile?

- -
-
-

To update your profile, you need to edit your JSON file in our GitHub repository and submit a new pull request. Once approved, your changes will be reflected on the site.

-
-
- -
-
-

What information should I include in my profile?

- -
-
-

We recommend including your name, a professional photo, a brief bio, your skills, links to your projects, and your social media profiles. This helps others get a comprehensive view of your work.

-
-
- -
-
-

Can I add multiple projects to my profile?

- -
-
-

Yes, you can add multiple projects to your profile. Each project can include a name, description, technologies used, and links to live demos or repositories.

-
-
- -
-
-

How do I delete my profile?

- -
-
-

To delete your profile, you can submit a pull request to remove your JSON file from the repository. Alternatively, you can contact us directly for assistance.

-
-
-
- - -
-
-
-

How can I contribute to Dev Profiles?

- -
-
-

You can contribute by adding your profile, improving the documentation, reporting bugs, suggesting new features, or contributing code improvements. Check our GitHub repository for detailed contribution guidelines.

-
-
- -
-
-

Do I need to be an experienced developer to contribute?

- -
-
-

No, developers of all experience levels are welcome to contribute. Even adding your profile helps grow our community. If you're new to open source, we have resources to help you get started.

-
-
- -
-
-

What happens after I submit a pull request?

- -
-
-

After you submit a pull request, our team will review your changes. We might suggest improvements or ask for clarification. Once approved, your changes will be merged and deployed to the live site.

-
-
- -
-
-

Can I contribute to the website's code?

- -
-
-

Absolutely! We welcome contributions to our codebase. Check our GitHub repository for open issues and feature requests. Make sure to follow our coding standards and guidelines.

-
-
-
- - -
-
-
-

What technologies does Dev Profiles use?

- -
-
-

Dev Profiles is built with HTML, CSS, and JavaScript. We use GitHub for version control and hosting. The site is designed to be fast, accessible, and responsive across all devices.

-
-
- -
-
-

How is my data stored and used?

- -
-
-

Your profile data is stored as JSON files in our GitHub repository. We only display the information you provide in your profile. We don't sell or share your data with third parties.

-
-
- -
-
-

Is the platform mobile-friendly?

- -
-
-

Yes, Dev Profiles is fully responsive and works well on all devices including smartphones, tablets, and desktops. The interface adapts to different screen sizes for optimal viewing.

-
-
- -
-
-

How often is the site updated?

- -
-
-

The site is updated regularly as new profiles are added and improvements are made. We deploy changes frequently to ensure the platform remains up-to-date and secure.

-
-
-
-
- -
-

Still have questions?

-

If you couldn't find the answer to your question, feel free to reach out to us.

- - - -
-
-
- - - - - - - - - - - - \ No newline at end of file diff --git a/index.html b/index.html index feadb3b..1b54063 100644 --- a/index.html +++ b/index.html @@ -10,175 +10,30 @@ - - - - - - - -
-
-
- - -
- -
- - -
- -
Visitors: 0
-
- - - - -
-
-
-