Skip to main content

Assist in setting up and maintaining developer environments

Project description

Daktari is a tool to help the initial setup and ongoing maintenance of developer environments. It runs a series of checks (for example, that required software is installed) and provides suggestions on how to fix the issue if the check fails.

Configuration

In the root of the project repository, create a .daktari.py configuration file listing the checks you want run. For example,

from daktari.checks.git import *

version = "0.0.35"
title = "My Project"

checks = [
    GitInstalled(),
    GitLfsInstalled(),
    GitLfsSetUpForUser(),
    GitLfsFilesDownloaded(),
    GitCryptInstalled(),
]

Then run daktari to diagnose your environment:

$ daktari
✅ [git.installed] Git is installed
✅ [git.lfs.installed] Git LFS is installed
✅ [git.lfs.setUpForUser] Git LFS is set up for the current user
✅ [git.lfs.filesDownloaded] Git LFS files have been downloaded
❌ [git.crypt.installed] git-crypt is not installed
┌─💡 Suggestion ─────────┐
│ brew install git-crypt │
└────────────────────────┘

Custom Check

You can write a custom check as a Python class within .daktari.py, and include it in your list of checks. Example check implementation:

class GitCryptInstalled(Check):
    name = "git.crypt.installed"
    depends_on = [GitInstalled]

    suggestions = {
        OS.OS_X: "<cmd>brew install git-crypt</cmd>",
        OS.UBUNTU: "<cmd>sudo apt install git-crypt</cmd>",
        OS.GENERIC: "Install git-crypt (https://www.agwa.name/projects/git-crypt/)",
    }

    def check(self):
        return self.verify(can_run_command("git crypt version"), "git-crypt is <not/> installed")

Release instructions

bumpversion --verbose patch
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

daktari-0.0.35.tar.gz (15.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

daktari-0.0.35-py3-none-any.whl (23.5 kB view details)

Uploaded Python 3

File details

Details for the file daktari-0.0.35.tar.gz.

File metadata

  • Download URL: daktari-0.0.35.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for daktari-0.0.35.tar.gz
Algorithm Hash digest
SHA256 fcdd135d4aa569f493e5abdc827ca1314f273c08ef681cbae7501a246d6aad5b
MD5 f810ab4f28eef122d33492651abbdb7b
BLAKE2b-256 56ad6a0baa1ba25f98de8f966056092deafa4ceeecceca01bc3df86522a90231

See more details on using hashes here.

File details

Details for the file daktari-0.0.35-py3-none-any.whl.

File metadata

  • Download URL: daktari-0.0.35-py3-none-any.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for daktari-0.0.35-py3-none-any.whl
Algorithm Hash digest
SHA256 7bcc224a1de1a060470126ac21fde0f1f72de34c9fd6aefadea6a7dd671aaa6d
MD5 53832b44ff8b99cf9cd952a29f8f56c8
BLAKE2b-256 a560321848a223e1b064bf1f1a24654422a9314ab99382d863b10f710e1d635d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page