/health

[WIP] A service to watch status of Masonite application's components

Primary LanguagePythonMIT LicenseMIT

Masonite Health

Masonite Package GitHub Workflow Status (branch) PyPI Python Version GitHub release (latest by date including pre-releases) License Code style: black

Introduction

A service to watch status of Masonite application's components

Features

  • Add your package main features here
  • and here

Installation

pip install masonite-health

Configuration

Add HealthProvider to your project in config/providers.py:

# config/providers.py
# ...
from health import HealthProvider

# ...
PROVIDERS = [
    # ...
    # Third Party Providers
    HealthProvider,
    # ...
]

Then you can publish the package resources (if needed) by doing:

python craft package:publish health

Usage

Explain how to use your package

Contributing

Please read the Contributing Documentation here.

Maintainers

Architecture

Masonite Health Architecture

License

Masonite Health is open-sourced software licensed under the MIT license.