New indigo/purple shield+pulse logo, theme colors, localStorage key prefixes, manifest metadata. Footer and Social link retain attribution to upstream Gatus repo per Apache 2.0.
48 lines
929 B
Markdown
48 lines
929 B
Markdown
# PANDUS
|
|
|
|
Status page and health dashboard for monitoring applications and infrastructure.
|
|
|
|
## Fork Notice
|
|
|
|
This is a private fork of [Gatus](https://github.com/TwiN/gatus) by [TwiN](https://github.com/TwiN), licensed under the Apache 2.0 License.
|
|
|
|
Original repository: https://github.com/TwiN/gatus
|
|
|
|
## Quick Start
|
|
|
|
```yaml
|
|
endpoints:
|
|
- name: website
|
|
url: "https://example.com"
|
|
interval: 5m
|
|
conditions:
|
|
- "[STATUS] == 200"
|
|
- "[RESPONSE_TIME] < 500"
|
|
```
|
|
|
|
```bash
|
|
docker run -p 8080:8080 --name pandus -v $(pwd)/config.yaml:/config/config.yaml pandus
|
|
```
|
|
|
|
## Build
|
|
|
|
```bash
|
|
# Frontend
|
|
make frontend-install
|
|
make frontend-build
|
|
|
|
# Backend
|
|
make install
|
|
|
|
# Docker
|
|
make docker-build
|
|
```
|
|
|
|
## Configuration
|
|
|
|
See [upstream documentation](https://github.com/TwiN/gatus) for full configuration reference.
|
|
|
|
## License
|
|
|
|
[Apache 2.0](LICENSE) — Original work Copyright TwiN, modifications Copyright pudding-panda.
|