mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2026-04-14 14:11:26 -07:00
fixes and badges + webhook prep
This commit is contained in:
12
README.md
12
README.md
@@ -13,9 +13,15 @@ JavaScript)*
|
|||||||
# Docker image 🐳
|
# Docker image 🐳
|
||||||
[](https://github.com/jokob-sk/Pi.Alert/actions/workflows/docker.yml)
|
[](https://github.com/jokob-sk/Pi.Alert/actions/workflows/docker.yml)
|
||||||
[](https://hub.docker.com/r/jokobsk/pi.alert)
|
[](https://hub.docker.com/r/jokobsk/pi.alert)
|
||||||
<a href="https://hub.docker.com/r/jokobsk/pi.alert">
|
<a href="https://hub.docker.com/r/jokobsk/pi.alert">
|
||||||
<img src="https://img.shields.io/docker/pulls/jokobsk/pi.alert?logo=docker&color=0aa8d2&logoColor=fff" alt="Docker Pulls">
|
<img src="https://img.shields.io/docker/pulls/jokobsk/pi.alert?logo=docker&color=0aa8d2&logoColor=fff" alt="Docker Pulls">
|
||||||
</a>
|
</a>
|
||||||
|
<span>
|
||||||
|
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/jokob-sk/pi.alert/main?logo=github&style=plastic">
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
<img alt="Docker last pushed" src="https://img.shields.io/badge/dynamic/json?color=blue&label=Last%20pushed&query=last_updated&url=https%3A%2F%2Fhub.docker.com%2Fv2%2Frepositories%2Fjokobsk%2Fpi.alert%2F&logo=docker&?link=http://left&link=https://hub.docker.com/repository/docker/jokobsk/pi.alert">
|
||||||
|
</span>
|
||||||
|
|
||||||
🥇 Pi.Alert credit goes to [pucherot/Pi.Alert](https://github.com/pucherot/Pi.Alert). <br/>
|
🥇 Pi.Alert credit goes to [pucherot/Pi.Alert](https://github.com/pucherot/Pi.Alert). <br/>
|
||||||
🐳 Docker Image: [jokobsk/Pi.Alert](https://registry.hub.docker.com/r/jokobsk/pi.alert). <br/>
|
🐳 Docker Image: [jokobsk/Pi.Alert](https://registry.hub.docker.com/r/jokobsk/pi.alert). <br/>
|
||||||
|
|||||||
@@ -31,6 +31,11 @@ REPORT_TO = 'user@gmail.com'
|
|||||||
REPORT_DEVICE_URL = 'http://pi.alert/deviceDetails.php?mac='
|
REPORT_DEVICE_URL = 'http://pi.alert/deviceDetails.php?mac='
|
||||||
REPORT_DASHBOARD_URL = 'http://pi.alert/'
|
REPORT_DASHBOARD_URL = 'http://pi.alert/'
|
||||||
|
|
||||||
|
# Webhook settings
|
||||||
|
# ----------------------
|
||||||
|
REPORT_WEBHOOK = True
|
||||||
|
WEBHOOK_URL = http://100.89.112.105:5678/webhook-test/a1db46b8-14bb-4651-a079-9ab5b01fada3
|
||||||
|
|
||||||
# NTFY (https://ntfy.sh/) settings
|
# NTFY (https://ntfy.sh/) settings
|
||||||
# ----------------------
|
# ----------------------
|
||||||
REPORT_NTFY = False
|
REPORT_NTFY = False
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
[](https://github.com/jokob-sk/Pi.Alert/actions/workflows/docker.yml)
|
[](https://github.com/jokob-sk/Pi.Alert/actions/workflows/docker.yml)
|
||||||
[](https://hub.docker.com/r/jokobsk/pi.alert)
|
[](https://hub.docker.com/r/jokobsk/pi.alert)
|
||||||
<a href="https://hub.docker.com/r/jokobsk/pi.alert">
|
<a href="https://hub.docker.com/r/jokobsk/pi.alert">
|
||||||
<img src="https://img.shields.io/docker/pulls/jokobsk/pi.alert?logo=docker&color=0aa8d2&logoColor=fff" alt="Docker Pulls">
|
<img src="https://img.shields.io/docker/pulls/jokobsk/pi.alert?logo=docker&color=0aa8d2&logoColor=fff" alt="Docker Pulls">
|
||||||
</a>
|
</a>
|
||||||
|
<span>
|
||||||
|
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/jokob-sk/pi.alert/main?logo=github&style=plastic">
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
<img alt="Docker last pushed" src="https://img.shields.io/badge/dynamic/json?color=blue&label=Last%20pushed&query=last_updated&url=https%3A%2F%2Fhub.docker.com%2Fv2%2Frepositories%2Fjokobsk%2Fpi.alert%2F&logo=docker&?link=http://left&link=https://hub.docker.com/repository/docker/jokobsk/pi.alert">
|
||||||
|
</span>
|
||||||
|
|
||||||
# 🐳 A docker image for Pi.Alert
|
# 🐳 A docker image for Pi.Alert
|
||||||
|
|
||||||
|
|||||||
@@ -91,8 +91,7 @@ require 'php/templates/language/'.$pia_lang_selected.'.php';
|
|||||||
<link rel="icon" type="image/x-icon" href="img/pialertLogoOrange.png">
|
<link rel="icon" type="image/x-icon" href="img/pialertLogoOrange.png">
|
||||||
|
|
||||||
<!-- For better UX on Mobile Devices using the Shortcut on the Homescreen -->
|
<!-- For better UX on Mobile Devices using the Shortcut on the Homescreen -->
|
||||||
<link rel="manifest" href="img/manifest.json">
|
<link rel="manifest" href="img/manifest.json">
|
||||||
<link rel="apple-touch-icon" href="https://net-dev.de/pialert_homescreen.png">
|
|
||||||
<!-- Dark-Mode Patch -->
|
<!-- Dark-Mode Patch -->
|
||||||
<?php
|
<?php
|
||||||
if ($ENABLED_DARKMODE === True) {
|
if ($ENABLED_DARKMODE === True) {
|
||||||
|
|||||||
Reference in New Issue
Block a user