Custom app launcher, browser home page, and service monitor. cute.haus
homelab react typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

watsup / README.md
846 B 29 lines
1# watsup 2 3![screenshot](_img/screenshot.png) 4 5watsup is a convenient little dashboard and app launcher for [cute.haus](https://github.com/alyraffauf/cute.haus), my hybrid homelab/cloud infrastructure. Very much inspired by [glance](https://github.com/glanceapp/glance), but I grew tired of the limitations of a generic solution. Plus, I wanted to build my own for fun. 6 7In addition to some pleasantries (top 5 stories on Hacker News, weather, search), it shows every website and service I host, with a checkmark reflecting whether they're reachable or not. 8 9## build stuff 10 11To install dependencies: 12 13```bash 14bun install 15``` 16 17To start a development server: 18 19```bash 20bun dev 21``` 22 23To run for production: 24 25```bash 26bun start 27``` 28 29This project was created using `bun init` in bun v1.3.7. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.