From 8285449bbc4090753b98ba0d030d246dfeb2737b Mon Sep 17 00:00:00 2001 From: Samuel Philipp Date: Wed, 6 Dec 2023 23:42:26 +0100 Subject: [PATCH 1/3] removed .drone.yml --- .drone.yml | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 41c30f6..0000000 --- a/.drone.yml +++ /dev/null @@ -1,44 +0,0 @@ -kind: pipeline -type: docker -name: default - -steps: - - name: build - image: node:lts - commands: - - npm install - - npm run build - - name: deploy-dev - image: alpine - environment: - FTP_HOST: - from_secret: FTP_HOST - FTP_USERNAME: - from_secret: FTP_USERNAME - FTP_PASSWORD: - from_secret: FTP_PASSWORD - commands: - - which lftp || ( apk --update add lftp ) - - lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ dev.sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST - when: - branch: - - develop - event: - - push - - name: deploy - image: alpine - environment: - FTP_HOST: - from_secret: FTP_HOST - FTP_USERNAME: - from_secret: FTP_USERNAME - FTP_PASSWORD: - from_secret: FTP_PASSWORD - commands: - - which lftp || ( apk --update add lftp ) - - lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST - when: - branch: - - main - event: - - push From 8bb095b5993ac37500cb82b70defe618058aa803 Mon Sep 17 00:00:00 2001 From: Samuel Philipp Date: Thu, 7 Dec 2023 00:59:38 +0100 Subject: [PATCH 2/3] migrated to new status page --- src/_data/services.json | 20 ++++++++++---------- src/_data/strings.json | 2 +- src/_includes/services-extended.html | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/_data/services.json b/src/_data/services.json index 6d1754e..3c8ce56 100644 --- a/src/_data/services.json +++ b/src/_data/services.json @@ -4,7 +4,7 @@ "name": "Matrix", "icon": "i-comments", "url": "https://chat.sp-codes.de", - "status": "https://matrix.sp-codes.de/_matrix/static/", + "status": "1", "summary": { "de": "Die offene Plattform für sichere und dezentrale Kommunikation.", "en": "The open platform for secure and decentralized communication." @@ -15,7 +15,7 @@ "name": "Jitsi Meet", "icon": "i-users", "url": "https://jitsi.sp-codes.de", - "status": "https://jitsi.sp-codes.de", + "status": "2", "summary": { "de": "Einfache Videokonferenzen mit Leichtigkeit.", "en": "Easy video conferencing with ease." @@ -26,7 +26,7 @@ "name": "Mastodon", "icon": "i-mastodon", "url": "https://social.sp-codes.de", - "status": "https://social.sp-codes.de/health", + "status": "7", "summary": { "de": "Das soziale Netzwerk für dezentrale und sichere Interaktion.", "en": "The social network for decentralized and secure interaction." @@ -37,7 +37,7 @@ "name": "PeerTube", "icon": "i-peertube", "url": "https://tube.sp-codes.de", - "status": "https://tube.sp-codes.de", + "status": "9", "summary": { "de": "Die freie und dezentrale Plattform für gemeinsames Video-Streaming.", "en": "The free and decentralized platform for collaborative video streaming." @@ -48,7 +48,7 @@ "name": "Pixelfed", "icon": "i-pixelfed", "url": "https://pixel.sp-codes.de", - "status": "https://pixel.sp-codes.de", + "status": "11", "beta": true, "summary": { "de": "Das soziale Netzwerk für den Austausch von Bildern und Fotografie.", @@ -60,7 +60,7 @@ "name": "Forgejo", "icon": "i-git", "url": "https://git.sp-codes.de", - "status": "https://git.sp-codes.de", + "status": "13", "summary": { "de": "Die Plattform für einfaches und sicheres Code-Hosting.", "en": "The platform for easy and secure code hosting." @@ -70,7 +70,7 @@ "id": "connectivitycheck", "name": "Captive Portal Check", "icon": "i-wifi", - "status": "https://connectivitycheck.sp-codes.de/generate204", + "status": "19", "summary": { "de": "Überprüfung der Verfügbarkeit von Internetzugang.", "en": "Verification of Internet access availability." @@ -81,7 +81,7 @@ "name": "ntfy", "icon": "i-cloud-download", "url": "https://ntfy.sp-codes.de", - "status": "https://ntfy.sp-codes.de", + "status": "18", "summary": { "de": "Echtzeitbenachrichtigungen mit UnifiedPush-Unterstützung.", "en": "Real-time notifications with UnifiedPush support." @@ -92,7 +92,7 @@ "name": "Etherpad", "icon": "i-pencil-square", "url": "https://pad.sp-codes.de", - "status": "https://pad.sp-codes.de", + "status": "17", "summary": { "de": "Gemeinsame Echtzeit-Textbearbeitung für effektive Zusammenarbeit.", "en": "Collaborative real-time text editing for effective collaboration." @@ -103,7 +103,7 @@ "name": "Shields", "icon": "i-tags", "url": "https://shields.sp-codes.de", - "status": "https://shields.sp-codes.de", + "status": "20", "summary": { "de": "Visuelle Badges zur Anzeige von Projektinformationen und Status.", "en": "Visual badges for displaying project information and status." diff --git a/src/_data/strings.json b/src/_data/strings.json index fa99388..324ebe1 100644 --- a/src/_data/strings.json +++ b/src/_data/strings.json @@ -32,7 +32,7 @@ "en": "Online" }, "outage": { - "de": "Fehler", + "de": "Ausfall", "en": "Error" }, "maintenance": { diff --git a/src/_includes/services-extended.html b/src/_includes/services-extended.html index 6d1ee22..eee08df 100644 --- a/src/_includes/services-extended.html +++ b/src/_includes/services-extended.html @@ -12,7 +12,7 @@ {% if service.status %} {% endif %} From 95fdada9214b5f65d805bc24a12f569727b0b4bd Mon Sep 17 00:00:00 2001 From: Samuel Philipp Date: Thu, 7 Dec 2023 01:14:09 +0100 Subject: [PATCH 3/3] updated strings --- src/_data/strings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/strings.json b/src/_data/strings.json index 324ebe1..2fe4cff 100644 --- a/src/_data/strings.json +++ b/src/_data/strings.json @@ -33,7 +33,7 @@ }, "outage": { "de": "Ausfall", - "en": "Error" + "en": "Outage" }, "maintenance": { "de": "Wartung",