Skip to content

Commit

Permalink
Merge branch 'GarimaSingh0109:main' into added
Browse files Browse the repository at this point in the history
  • Loading branch information
Codewithmeowmeow authored Oct 3, 2024
2 parents 8263e42 + cb96a23 commit 3634058
Show file tree
Hide file tree
Showing 42 changed files with 1,943 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Ignore node_modules directory
node_modules/

# Ignore build directories
dist/
build/

# Ignore log files
*.log

# Ignore environment variables
.env
.env.local
.env.*.local

# Ignore OS-specific files
.DS_Store
Thumbs.db

# Ignore IDE/editor settings
.vscode/
.idea/

# Ignore package lock files
package-lock.json
yarn.lock

# Ignore coverage reports
coverage/

# Ignore compiled files
*.out
*.exe
*.dll

# Ignore temporary files
*.tmp
*.temp
*.swp

# Ignore dependency directories for Python
__pycache__/
*.py[cod]
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5502
}
99 changes: 99 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
Here's the revised `CONTRIBUTING.md` file with your additional instructions:

---

# Contributing to LinkedIn Resume Builder 🤝

Thank you for your interest in contributing to the LinkedIn Resume Builder project! We appreciate your help in making this project better. Please follow the guidelines below to ensure a smooth contribution process.

## Table of Contents 📚

- [Forking the Repository](#forking-the-repository)
- [Setting Up the Development Environment](#setting-up-the-development-environment)
- [Submitting Issues](#submitting-issues)
- [Submitting Pull Requests](#submitting-pull-requests)
- [Coding Style and Best Practices](#coding-style-and-best-practices)
- [Running Tests](#running-tests)
- [Code of Conduct](#code-of-conduct)

## Forking the Repository 🍴

1. Click on the **Fork** button at the top right corner of the repository page.
2. Clone your forked repository to your local machine:

```bash
git clone https://github.com/your-username/linkedin-resume-builder.git
```

3. Navigate to the project directory:

```bash
cd linkedin-resume-builder
```


## Submitting Issues 🐛

If you find a bug or have a feature request, please submit an issue by following these steps:

1. Navigate to the **Issues** tab of the repository.
2. Click on the **New Issue** button.
3. Fill out the issue template with the necessary details. Please include:
- A brief description of the issue.
- Screenshots (if applicable) to illustrate the problem.

## Submitting Pull Requests 🔄

To submit a pull request:

1. **Star the Repository** ⭐: If you find this project helpful, please star the repository to show your support!

2. Ensure your fork is up to date with the main repository:

```bash
git checkout main
git pull upstream main
```

3. Create a new branch for your feature or fix:

```bash
git checkout -b your-branch-name
```

4. Make your changes and commit them:

```bash
git add .
git commit -m "Add a brief description of your changes"
```

5. Push your branch to your forked repository:

```bash
git push origin your-branch-name
```

6. Go to the original repository and create a pull request. In your pull request:
- Write a brief description of the changes.
- Include before and after screenshots (if applicable).
- Mention the issue number that your pull request addresses.

7. After your pull request is merged, please delete your forked repository and fork it again to avoid clashes when merging other issues.

## Coding Style and Best Practices 💻

- Follow the [JavaScript Standard Style](https://standardjs.com/) for coding conventions.
- Write clear and concise commit messages.
- Ensure your code is well-documented and easy to understand.



## Code of Conduct 📜

By participating in this project, you agree to abide by the [Code of Conduct](CODE_OF_CONDUCT.md). Please treat everyone with respect and kindness.

---

Thank you for contributing to the LinkedIn Resume Builder project! We appreciate your help in making it a better resource for everyone. If you have any questions, feel free to reach out!

Binary file added Hero Section.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Li.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3634058

Please sign in to comment.