Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1.18 KB

CONTRIBUTING.md

File metadata and controls

33 lines (20 loc) · 1.18 KB

Contributing

Thank you for taking an interest in contributing to haywire-grav. All contributions will be fully credited.

Bug Reporting

Create an issue using the Bug Report Template.

Feature Request

Create an issue using the Feature Request Template.

Pull Request

  • The master branch is basically just a snapshot of the latest stable release. All development should be done in dedicated branches. Do not submit PRs against the master branch.

  • Checkout a topic branch from the relevant branch, e.g. develop, and merge back against that branch.

  • Document any change in behaviour: Make sure the README.md, CHANGELOG.md and any other relevant documentation are kept up-to-date.

  • One pull request per feature: If you want to do more than one thing, send multiple pull requests.

Development

# @ path/to/grav/installation
$ cd user/themes/
$ git clone https://github.com/robbinworks/haywire-grav.git haywire
$ cd haywire && yarn
$ yarn dev / watch / production

Happy coding!