Skip to content

Latest commit

 

History

History
59 lines (34 loc) · 1.48 KB

File metadata and controls

59 lines (34 loc) · 1.48 KB

sysdi

nox pypi

Manages systemd units and timers. See:

  • Example: for typical usage
  • class TimedUnit in core.py for additional options and commentary.

Dev

Copier Template

Project structure and tooling mostly derives from the Coppy, see its documentation for context and additional instructions.

This project can be updated from the upstream repo, see Updating a Project.

Project Setup

From zero to hero (passing tests that is):

  1. Ensure host dependencies are installed

  2. Start docker service dependencies (if applicable):

    docker compose up -d

  3. Sync project virtualenv w/ lock file:

    uv sync

  4. Configure pre-commit:

    pre-commit install

  5. Run tests:

    nox

Versions

Versions are date based. A bump action exists to help manage versions:

  # Show current version
  mise bump --show

  # Bump version based on date, tag, and push:
  mise bump

  # See other options
  mise bump -- --help