Skip to content
Snippets Groups Projects
Select Git revision
  • 713fd9033863faeb9fc6d6cbc7a232cf0ed0b459
  • master default protected
  • 1.31
  • 4.38.9
  • 4.38.8
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
23 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more

    Contributing to schukai GmbH Projects

    Code of Conduct

    Be a human, not an asshole. Common sense and basic human decency apply.

    Getting Started

    Setting up the Project

    1. Fork the project on GitLab.
    2. Clone your fork locally. Replace [your-username] with your GitLab username and [project-name] with the actual project name:
      git clone $(git config --get remote.origin.url)
    3. Add the upstream repository. Replace [original-username] and [project-name] with the original repository's username and project name:
      git remote add upstream https://gitlab.schukai.com/[original-username]/[project-name].git

    Making Changes

    1. Create a new branch:
      git checkout -b new-feature-branch
    2. Make your changes.
    3. Commit your changes:
      git commit -m "Description of change"

    Submitting a Merge Request

    1. Push your changes to your fork:
      git push origin new-feature-branch
    2. Navigate to the original project repository on gitlab.schukai.com.
    3. Open a Merge Request and provide a clear description of the changes.

    Coding Guidelines

    • Follow the coding style used in the project.
    • Write unit tests for new features.
    • Ensure that all tests pass before submitting a Merge Request.

    Reporting Issues

    If you find an issue, please create a new issue on gitlab.schukai.com.

    Additional Resources

    Thank you for your contribution!