# kodi-timekeeper

An approach to having kids use a Kodi media center instance: manage session use and keep track of time spent and available budget.

## Valid Conventional Commits scopes

* `meta`: Affects the Git project's structure such as for example a `pyproject.toml` change, adding a new directory or changing how a news fragment file is formatted
  * Examples:
    ```
    refactor(meta): Move pytest config into 'pyproject.toml'
    ```
    ```
    build(meta): Set custom towncrier news topics
    ```
* `db`: Affects database connectivity features, for example being able to migrate database versions or installing an empty database
  * Examples:
    ```
    feat(db): Add requirements for database work
    ```