https://github.com/marlysson/health
[WIP] A service to watch status of Masonite application's components
https://github.com/marlysson/health
Last synced: about 2 months ago
JSON representation
[WIP] A service to watch status of Masonite application's components
- Host: GitHub
- URL: https://github.com/marlysson/health
- Owner: Marlysson
- License: mit
- Created: 2022-02-22T13:44:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-11T05:15:24.000Z (over 1 year ago)
- Last Synced: 2025-03-26T18:52:05.729Z (2 months ago)
- Language: Python
- Homepage:
- Size: 347 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Masonite Health
![]()
## Introduction
A service to watch status of Masonite application's components
## Features
- _Add your package main features here_
- _and here_## Installation
```bash
pip install masonite-health
```## Configuration
Add HealthProvider to your project in `config/providers.py`:
```python
# config/providers.py
# ...
from health import HealthProvider# ...
PROVIDERS = [
# ...
# Third Party Providers
HealthProvider,
# ...
]
```Then you can publish the package resources (if needed) by doing:
```bash
python craft package:publish health
```## Usage
_Explain how to use your package_
## Contributing
Please read the [Contributing Documentation](CONTRIBUTING.md) here.
## Maintainers
- [Marlysson](https://www.github.com/Marlysson)
## Architecture

## License
Masonite Health is open-sourced software licensed under the [MIT license](LICENSE).