- Install Docker (Confluence Guide)
- Use the built-in devcontainer configuration (Confluence Guide)
To run the live-reload server locally:
bun run devThe process of submitting changes to this repository are as follows:
-
Make a branch and link it to the issue you are working on from the board
-
Run the following commands before commiting your changes to the git branch:
bun run fmt bun run lint
-
Make code changes and commit using convential commit style. For example, if you made a change to the projects page to fix a bug then your commit may look like the following:
bug(projects): Change thing to fix x issue.