# Contributing to Alinea CMS ## 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 ```markdown git checkout -b branch-name ``` - Install all dependencies: ``` bun install ``` - Run dev server in watch mode: ``` bun dev ``` ### Commiting changes - Make your changes - Commit and push ```markdown 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!