|
| 1 | +<!-- TOC --> |
| 2 | + |
| 3 | +- [Contributing](#contributing) |
| 4 | + - [Branches](#branches) |
| 5 | + - [Commits](#commits) |
| 6 | + - [Use the Imperative](#use-the-imperative) |
| 7 | + - [Use the Body to Explain the Background and Reasoning, not the Implementation](#use-the-body-to-explain-the-background-and-reasoning-not-the-implementation) |
| 8 | + - [Subject Line Standard Terminology](#subject-line-standard-terminology) |
| 9 | + - [Documentation](#documentation) |
| 10 | + - [Code Review](#code-review) |
| 11 | + - [Deploy](#deploy) |
| 12 | +- [Task Workflow](#task-workflow) |
| 13 | +- [Definition of Done](#definition-of-done) |
| 14 | + |
| 15 | +<!-- /TOC --> |
| 16 | + |
| 17 | +# Contributing |
| 18 | +<a id="markdown-contributing" name="contributing"></a> |
| 19 | +*Detailed expectations for those contributing to this repository. A documented branching strategy is recommended. Trunk based development as default.* |
| 20 | + |
| 21 | +This project uses a [git-flow based development](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) branching strategy. |
| 22 | + |
| 23 | +[Trunk-based Development vs. Git Flow](https://www.toptal.com/software/trunk-based-development-git-flow) |
| 24 | + |
| 25 | +## Branches |
| 26 | +<a id="markdown-branches" name="branches"></a> |
| 27 | +*Branch naming must be consistent and must be in [kebab-case](https://en.toolpage.org/tool/kebabcase). The following pattern is recommended -* |
| 28 | + |
| 29 | +- feature-[Issue Number]/* - Feature additions |
| 30 | +- bugfix-[Issue Number]/* - Bug fixes |
| 31 | +- chore-[Issue Number]/* - Chore tasks |
| 32 | +- doc-[Issue Number]/* - Documentation tasks |
| 33 | +- release/[release-version] - Release versioning |
| 34 | + |
| 35 | +For example, |
| 36 | +- feature-27/setup-postgresql |
| 37 | +- release/1.0 |
| 38 | + |
| 39 | +## Commits |
| 40 | +<a id="markdown-commits" name="commits"></a> |
| 41 | +*Consistent, verbose commits reduce the need for additional documentation. May be used for generating changelogs. Detailed instructions must be included either through a documented specification or custom documentation.* |
| 42 | + |
| 43 | +This project uses the [conventional commit](https://www.conventionalcommits.org/en/v1.0.0-beta.4/) specification for commits. |
| 44 | + |
| 45 | +https://github.com/talos-systems/conform |
| 46 | + |
| 47 | +### Use the Imperative |
| 48 | +<a id="markdown-use-the-imperative" name="use-the-imperative"></a> |
| 49 | +*Consistent tense in commit messages.* |
| 50 | + |
| 51 | +In keeping with the standard output of git itself, all commit subject lines must be written using the imperative: |
| 52 | + |
| 53 | +Your commit subject line must be able to complete the sentence |
| 54 | + |
| 55 | +> If applied, this commit will ... |
| 56 | +
|
| 57 | +If it doesn't, it's non-conformant. The body may use any style you want. |
| 58 | + |
| 59 | +### Use the Body to Explain the Background and Reasoning, not the Implementation |
| 60 | +<a id="markdown-use-the-body-to-explain-the-background-and-reasoning-not-the-implementation" name="use-the-body-to-explain-the-background-and-reasoning-not-the-implementation"></a> |
| 61 | + |
| 62 | +*Especially* if the diff is rather large or extremely clustered, you can save all fellow developers some time by explaining *why* you did *what*. |
| 63 | + |
| 64 | +When possible the addition of screenshots, recorded gifs or other visual media is recommended. |
| 65 | + |
| 66 | +### Subject Line Standard Terminology |
| 67 | +<a id="markdown-subject-line-standard-terminology" name="subject-line-standard-terminology"></a> |
| 68 | + |
| 69 | +First Word | Meaning |
| 70 | +--- | -- |
| 71 | +Add | Create a capability e.g. feature, test, dependency. |
| 72 | +Cut | Remove a capability e.g. feature, test, dependency. |
| 73 | +Fix | Fix an issue e.g. bug, typo, accident, misstatement. |
| 74 | +Bump | Increase the version of something e.g. dependency. |
| 75 | +Make | Change the build process, or tooling, or infra. |
| 76 | +Start | Begin doing something; e.g. create a feature flag. |
| 77 | +Stop | End doing something; e.g. remove a feature flag. |
| 78 | +Refactor | A code change that MUST be just a refactoring. |
| 79 | +Reformat | Refactor of formatting, e.g. omit whitespace. |
| 80 | +Optimize | Refactor of performance, e.g. speed up code. |
| 81 | +Document | Refactor of documentation, e.g. help files. |
| 82 | + |
| 83 | +## Documentation |
| 84 | +<a id="markdown-documentation" name="documentation"></a> |
| 85 | +*Documentation must be treated as an integral aspect of development. This section describes expectations for documentation rigor and placement.* |
| 86 | + |
| 87 | +In cases where the impact of a change is such that it is affects a fundamental component of the system, additional documentation is needed above what is presented in commit messages. This is by discretion, but it is advised to err on the side of more documentation than less. |
| 88 | + |
| 89 | +In these cases, documentation should be added as markdown files within the project directory. |
| 90 | + |
| 91 | +## Code Review |
| 92 | +<a id="markdown-code-review" name="code-review"></a> |
| 93 | +*Expectations for conducting code reviews, the merger of code and subesquent tasks* |
| 94 | + |
| 95 | +Pull requests require a minimum of one reviewer to accept changes prior to merge. It is the responsibility of the person submitting the pull request to schedule a code review. |
| 96 | + |
| 97 | +[Google Engineering - Code Review Developer Guide](https://google.github.io/eng-practices/review/) |
| 98 | + |
| 99 | +## Deploy |
| 100 | +<a id="markdown-deploy" name="deploy"></a> |
| 101 | +*Deployment steps from the perspective of an engineer required to deploy to all of the available evironments.* |
| 102 | + |
| 103 | +Once a pull request is merged the change will be automatically deployed to the appropriate environment. |
| 104 | + |
| 105 | +# Task Workflow |
| 106 | +<a id="markdown-task-workflow" name="task-workflow"></a> |
| 107 | +*Description of how tasks are tracked through project management software and expectations of different roles.* |
| 108 | + |
| 109 | + |
| 110 | + |
| 111 | +# Definition of Done |
| 112 | +<a id="markdown-definition-of-done" name="definition-of-done"></a> |
| 113 | +A task is complete when |
| 114 | +- All acceptance criteria have been met |
| 115 | +- Implementation has been code reviewed |
| 116 | +- All automated tests pass (e.g: Unit, end-to-end testing) |
| 117 | +- All manual tests pass (e.g: Functional, user interface testing) |
| 118 | +- Necessary documentation is reviewed |
| 119 | +- Implementation is deployed to the appropriate environment |
0 commit comments