Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 1.68 KB

CONTRIBUTING.md

File metadata and controls

68 lines (46 loc) · 1.68 KB

Contributing to PharmaSpot

Thank you for considering contributing to PharmaSpot! We welcome your help and appreciate your interest in improving this project.

Getting Started

Issues

Before contributing, check the issue tracker for existing issues. If your issue or feature request is not already documented, feel free to open a new issue.

Development Setup

  1. Clone your fork of the repository:

    git clone (https://github.com/drkNsubuga/PharmaSpot.git
    cd PharmaSpot
  2. Install dependencies:

    npm install
  3. Make sure the tests pass:

    npm test

Pull Requests

  1. Create a new branch for your contribution:

    git checkout -b feature/your-feature
  2. Make your changes and test thoroughly.

  3. Commit your changes with a descriptive commit message:

    git commit -m "Add your descriptive message here"
  4. Push your changes to your fork:

    git push origin feature/your-feature
  5. Open a pull request against the main branch of the original repository.

Coding Guidelines

  • Follow the existing code style and conventions used in the project.
  • Write clear and concise code with comments where necessary.
  • Write meaningful commit messages and PR titles.

License

By contributing to this project, you agree that your contributions will be licensed under the project's LICENSE.

Code of Conduct

Please review and adhere to our Code of Conduct.

Thank you for your contribution!