https://github.com/simon987/status
Minimalist status page
https://github.com/simon987/status
Last synced: about 1 year ago
JSON representation
Minimalist status page
- Host: GitHub
- URL: https://github.com/simon987/status
- Owner: simon987
- Created: 2020-02-01T01:41:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-10T23:24:36.000Z (over 6 years ago)
- Last Synced: 2025-02-09T20:18:24.917Z (over 1 year ago)
- Language: Scala
- Homepage:
- Size: 197 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# status
Minimalist status page

Built with:
* Akka
* H2 Database
* Slick
* cal-heatmap
* scalatra
## Configuration
`config.yml`
```yaml
sites:
- url: "https://example.net/"
description: description
summary: summary (HTML enabled)
- url: "https://example2.net/"
description: another descripion
summary: summary 2
```
## Usage
### (docker-compose)
```yaml
services:
status:
image: simon987/status:latest
container_name: status
ports:
- :8080
restart: always
volumes:
- type: volume
source: status
target: /app
```
### (Docker)
```
docker run -v $(pwd)/config.yml:/app/config.yml -p :8080 simon987/status
```
### (JVM)
```
sbt assembly
java -jar target/scala-2.13/status-assembly-0.1.jar
```