Skip to content

Latest commit

 

History

History
67 lines (39 loc) · 1.6 KB

CONTRIBUTING.md

File metadata and controls

67 lines (39 loc) · 1.6 KB

Contributing to SSO Service

👋 Welcome! We appreciate your interest in contributing to the SSO Service. Whether you want to report a bug, suggest an enhancement, or contribute code, we're thrilled to have you as part of the community.

Getting Started

  1. Fork the SSO Service repository.

  2. Clone your forked repository to your local machine:

    git clone https://github.com/priyanshuverma-dev/sso-service.git
    cd sso-service
  3. Install the project dependencies:

    yarn
  4. Create a branch for your changes:

    git checkout -b feature/your-feature

Making Changes

  • If you are fixing a bug, please provide steps to reproduce it.

  • Ensure your code follows the project's coding standards.

  • Write tests to cover your changes.

Testing

  • Run tests locally to ensure your changes do not introduce new issues:

    yarn test

Submitting Changes

  1. Push your changes to your forked repository:

    git push origin feature/your-feature
  2. Open a pull request against the main repository's main branch.

  3. Provide a clear and concise description of your changes.

  4. Ensure your pull request passes the automated CI checks.

Code of Conduct

This project follows the Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to [email protected].

Questions and Discussions

If you have questions or want to discuss ideas, feel free to open an issue or join our community discussions.

Thank you for contributing!