2024-02-10 08:11:28 +00:00
|
|
|
# `zdravko`
|
|
|
|
|
|
|
|
Golang selfhosted Status/Healthcheck monitoring app.
|
|
|
|
|
|
|
|
Mostly just a project to test [temporal.io](https://temporal.io/).
|
|
|
|
|
2024-02-10 11:59:58 +00:00
|
|
|
### Expected ~features~ things
|
2024-02-10 08:11:28 +00:00
|
|
|
- [ ] SSO or just expect to be run behind a auth proxy.
|
|
|
|
- [ ] Abbility for multiple instances/workers.
|
|
|
|
- Otherwise using a cronjob would do the job, no need for temporal.
|
|
|
|
- [ ] Some nice UI to try out [htmx](https://htmx.org/).
|
2024-02-10 11:59:58 +00:00
|
|
|
|
2024-02-10 17:05:11 +00:00
|
|
|
![Screenshot](docs/screenshot.png)
|
2024-02-11 09:15:43 +00:00
|
|
|
Demo is available at https://zdravko.fly.dev.
|
2024-02-10 17:05:11 +00:00
|
|
|
|
2024-02-10 11:59:58 +00:00
|
|
|
# Development
|
|
|
|
|
|
|
|
### Dependencies
|
|
|
|
* [devbox](https://www.jetpack.io/devbox)
|
|
|
|
* [justfile](https://github.com/casey/just)
|
|
|
|
|
|
|
|
```sh
|
2024-02-11 19:28:00 +00:00
|
|
|
# Configure
|
|
|
|
cp example.env .env
|
|
|
|
|
2024-02-10 11:59:58 +00:00
|
|
|
# Start development environment
|
|
|
|
just run
|
|
|
|
```
|