Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.64 KB

Contributing.md

File metadata and controls

55 lines (36 loc) · 1.64 KB

Contributing to AI Job Assistant Chat App

Thank you for considering contributing to the AI Job Assistant Chat App! Your contributions are valuable and help improve the project for everyone.

How to Contribute

  1. Fork the repository: Click the "Fork" button at the top right corner of the repository's page. This will create a copy of the repository in your GitHub account.

  2. Clone your fork:

    git clone https://github.com/YOUR-USERNAME/AI-Job-Assistant-ChatApp.git
    cd AI-Job-Assistant-ChatApp
  3. Create a new branch:

git checkout -b feature/your-feature-name
  1. Make your changes: Make the necessary changes and ensure that your code follows the project's coding standards.

  2. Commit your changes:

git add .
git commit -m "Add your commit message here"
  1. Push to your branch:
git push origin feature/your-feature-name
  1. Create a Pull Request:
  • Go to your fork on GitHub and switch to the branch you just pushed.
  • Click the "New Pull Request" button.
  • Provide a clear title and description for your pull request.
  1. Wait for review:
  • Your changes will be reviewed, and any necessary feedback will be provided. Make sure to address any feedback and push new commits.

Code Style

  • Please follow the coding style used in the project to maintain consistency. If there are no specific guidelines, try to match the existing code style.

Issues and Discussions

  • Feel free to open an issue for bug reports, feature requests, or general discussions. Your feedback is essential to improving the AI Job Assistant Chat App.

Thank you for contributing!