https://github.com/cub3d/youup
A simple, self-contained and self hosted status page with history
https://github.com/cub3d/youup
Last synced: 5 months ago
JSON representation
A simple, self-contained and self hosted status page with history
- Host: GitHub
- URL: https://github.com/cub3d/youup
- Owner: CUB3D
- License: agpl-3.0
- Created: 2020-06-08T01:08:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-23T09:48:32.000Z (over 1 year ago)
- Last Synced: 2024-12-31T03:42:29.758Z (over 1 year ago)
- Language: Rust
- Size: 881 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# You Up?
### A simple, self-contained, self hosted status page with history

### Screenshots

### Try it out
Current git master -> [here](https://status.cub3d.pw)
### Running with docker-compose
```yaml
version: '3'
services:
you_up:
container_name: status
build:
context: https://github.com/CUB3D/YouUp.git
ports:
- "8102:8102"
environment:
RUST_LOG: info
DATABASE_URL: ""
HISTORY_SIZE: 30
restart: unless-stopped
```