mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
fix: update some examples
This commit is contained in:
parent
1ac5696463
commit
b2ede38269
|
@ -2,9 +2,10 @@
|
|||
# Filename: index.sh
|
||||
PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping="
|
||||
INTERVAL=60
|
||||
HTTP_METHOD="GET"
|
||||
|
||||
while true; do
|
||||
curl -s -o /dev/null $PUSH_URL
|
||||
curl -X $HTTP_METHOD -s -o /dev/null $PUSH_URL
|
||||
echo "Pushed!"
|
||||
sleep $INTERVAL
|
||||
done
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
// Supports: Node.js >= 18, Deno, Bun
|
||||
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
|
||||
const interval = 60;
|
||||
const method = "GET";
|
||||
|
||||
const push = async () => {
|
||||
await fetch(pushURL);
|
||||
await fetch(pushURL, { method });
|
||||
console.log("Pushed!");
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue