Skip to content
Snippets Groups Projects
Select Git revision
  • 4791190b7aae085e2f56c928aa2c4c6247f3483b
  • master default protected
  • 1.31
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
  • 4.25.0
  • 4.24.3
  • 4.24.2
  • 4.24.1
  • 4.24.0
  • 4.23.6
  • 4.23.5
  • 4.23.4
  • 4.23.3
  • 4.23.2
  • 4.23.1
  • 4.23.0
  • 4.22.3
23 results

Monster_DOM.Updater.html

Blame
  • readme-go-utilities.mk 2.59 KiB
    #############################################################################################
    #############################################################################################
    ##
    ## README
    ##
    #############################################################################################
    #############################################################################################
    
    
    define README_FILE_CONTENT
    # $(COMPONENT_NAME)
    
    $(COMPONENT_NAME) is ...
    
    ## Documentation
    
    To check out docs and examples, visit ....
    
    ## Installation
    
    If you want to install the latest version of this tool, you can use the following command:
    
    ```shell
    wget -O ./$(COMPONENT_SLUG)  http://download.schukai.com/tools/$(COMPONENT_SLUG)/$(COMPONENT_SLUG)-$$( uname -s | tr [:upper:] [:lower:])-$$(echo uname -m | sed s/aarch64/arm64/ | sed s/x86_64/amd64/)  
    ```
    
    ## Usage
    
    The following command will show you the help of the tool:
    
    ```shell
    $(COMPONENT_SLUG) help
    ```
    
    ## Contributing
    
    Merge requests are welcome. For major changes, please open an issue first to discuss what
    you would like to change. **Please make sure to update tests as appropriate.**
    
    Versioning is done with [SemVer](https://semver.org/).
    Changelog is generated with [git-chglog](https://github.com/git-chglog/git-chglog#git-chglog)
    
    Commit messages should follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification.
    Messages are started with a type, which is one of the following:
    
    - **feat**: A new feature
    - **fix**: A bug fix
    - **doc**: Documentation only changes
    - **refactor**: A code change that neither fixes a bug nor adds a feature
    - **perf**: A code change that improves performance
    - **test**: Adding missing or correcting existing tests
    - **chore**: Other changes that don't modify src or test files
    
    The footer would be used for a reference to an issue or a breaking change.
    
    A commit that has a footer `BREAKING CHANGE:`, or appends a ! after the type/scope,
    introduces a breaking API change (correlating with MAJOR in semantic versioning).
    A BREAKING CHANGE can be part of commits of any type.
    
    the following is an example of a commit message:
    
    ```text
    feat: add 'extras' field
    ```
    
    ## Questions
    
    For questions and commercial support, please contact [schukai GmbH](https://www.schukai.com/).
    The issue list of this repo is exclusively for bug reports and feature requests.
    
    ## Issues
    
    Please make sure to read the Issue Reporting Checklist before opening an
    issue. Issues not conforming to the guidelines may be closed immediately.
    
    ## License
    
    $(COPYRIGHT_TEXT)
    
    $(COPYRIGHT_URL)
    
    You can also purchase a commercial license.
    
    
    endef