Simple notification http server
0
fork

Configure Feed

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

general housekeeping

+21 -2
+1 -1
Cargo.lock
··· 1098 1098 ] 1099 1099 1100 1100 [[package]] 1101 - name = "notify" 1101 + name = "notify-me" 1102 1102 version = "0.1.0" 1103 1103 dependencies = [ 1104 1104 "actix-web",
+1 -1
Cargo.toml
··· 1 1 [package] 2 - name = "notify" 2 + name = "notify-me" 3 3 version = "0.1.0" 4 4 edition = "2024" 5 5
+5
README.md
··· 1 + # Notify Me 2 + 3 + A very very very simple web server which listens for POST on `/notify` (x-www-form-urlencoded with `name` and `body`) and displays a notification. 4 + 5 + Designed specifically so my scuffed CI/CD system with `tangled-on-commit` can notify me when its complete lol
+14
notify-me.service
··· 1 + [Unit] 2 + Description=Notify Me 3 + After=network.target 4 + 5 + [Service] 6 + ExecStart=/bin/notify-me 7 + Restart=always 8 + RestartSec=30s 9 + Environment="HOST=0.0.0.0" 10 + Environment="PORT=6500" 11 + 12 + [Install] 13 + WantedBy=multi-user.target 14 +