Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 831 Bytes

contributing.md

File metadata and controls

45 lines (29 loc) · 831 Bytes

Contributing to Alinea CMS logo

Bugs

Found a bug? Have a problem with Alinea? Please check existing issues, maybe someone already reported the problem. If you don't find a similar issue don't hesitate to create a new one.

Development process

Setup

  • Fork this repository

  • Create a new branch

git checkout -b branch-name
  • Install all dependencies:

    yarn
    
  • Run dev server in watch mode:

    yarn dev
    

Commiting changes

  • Make your changes

  • Commit and push

git add .
git commit -m 'Commit message'
git push origin branch-name
  • Create a new pull request from your forked repository
  • Wait for your PR review and merge approval!
  • Star this repository if you had fun!