Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.27 KB

File metadata and controls

53 lines (41 loc) · 1.27 KB

Contributing

Thank you for your interest in contributing to this project! Here's how you can help.

Getting Started

  1. Fork the repository.
  2. Clone your fork:
    git clone https://github.com/<your-username>/testing.git
    cd testing
  3. Create a new branch for your work:
    git checkout -b feature/your-feature-name

Making Changes

  1. Make your changes in the new branch.
  2. Test your changes locally:
    node server.js
  3. Ensure the server runs correctly and responds as expected.

Submitting a Pull Request

  1. Commit your changes with a clear, descriptive message:
    git add .
    git commit -m "Add: brief description of your change"
  2. Push your branch to your fork:
    git push origin feature/your-feature-name
  3. Open a Pull Request against the main branch.
  4. Describe what your PR does and why the change is needed.

Guidelines

  • Keep changes focused and minimal — one feature or fix per PR.
  • Write clear commit messages.
  • Be respectful and constructive in discussions.

Reporting Issues

If you find a bug or have a suggestion, please open an issue with:

  • A clear title and description.
  • Steps to reproduce the issue (if applicable).
  • Expected vs. actual behavior.