feat: remove rss, status, and badge features
This commit is contained in:
parent
553d7d1780
commit
36720e2ba5
21 changed files with 904 additions and 1200 deletions
|
|
@ -4,9 +4,8 @@ Cargo workspace with the server-side pieces of Noisebell. Runs on any Linux box.
|
|||
|
||||
| Service | Port | What it does |
|
||||
|---------|------|--------------|
|
||||
| [`cache-service/`](cache-service/) | 3000 | Polls the Pi, stores history in SQLite, fans out webhooks |
|
||||
| [`cache-service/`](cache-service/) | 3000 | Polls the Pi, stores the latest state in SQLite, fans out webhooks |
|
||||
| [`discord-bot/`](discord-bot/) | 3001 | Posts door status to a Discord channel |
|
||||
| [`rss-service/`](rss-service/) | 3002 | Serves an Atom feed of door events |
|
||||
| [`noisebell-common/`](noisebell-common/) | — | Shared types and helpers |
|
||||
|
||||
See each service's README for configuration and API docs.
|
||||
|
|
@ -22,7 +21,6 @@ Or with Nix:
|
|||
```sh
|
||||
nix build .#noisebell-cache
|
||||
nix build .#noisebell-discord
|
||||
nix build .#noisebell-rss
|
||||
```
|
||||
|
||||
## NixOS deployment
|
||||
|
|
@ -57,11 +55,6 @@ The flake exports NixOS modules. Each service runs as a hardened systemd unit be
|
|||
channelId = "123456789012345678";
|
||||
webhookSecretFile = "/run/secrets/noisebell-discord-webhook-secret";
|
||||
};
|
||||
services.noisebell-rss = {
|
||||
enable = true;
|
||||
domain = "rss.noisebell.example.com";
|
||||
cacheUrl = "http://localhost:3000";
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue