Here is a quick guide to doing code contributions to this app.
- Fork this repository.
- Clone your fork locally.
- Install dependencies:
npm install
- Create a new branch following the convention
[type/scope]
. Type can be eitherfix
,feat
, or any other conventional commit type. Scope is a short describes of the work. - Start the app:
npm run dev
- Make and commit your changes following the commit convention.
- Ensure tests and build passes:
npm test npm run e2e npm run build
- Push your branch.
- Submit a pull request to the upstream 2do.txt repository.
Maintainers will merge the pull request by squashing all commits and editing the commit message if necessary.