diff --git a/Makefile b/Makefile index bf21ca9..37c3bd0 100644 --- a/Makefile +++ b/Makefile @@ -187,13 +187,14 @@ HDM_DEPLOY_PATH = /home/tengo/html/hdm build-index: build/.exists @echo "Building root index..." - @echo 'HdM Vorlesungen

HdM Vorlesungen

Wintersemester 2025/26 · Michael Czechowski

223015b
Dateiformate, Schnittstellen, Speichermedien & Distributionswege
6 Termine · Modul "Technik 1"
223015c
Grundlagen IT- und Internettechnik
3 Termine · Modul "Technik 1"
' > build/index.html + @echo 'HdM Vorlesungen

HdM Vorlesungen

Wintersemester 2025/26 · Michael Czechowski

223015b
Dateiformate, Schnittstellen, Speichermedien & Distributionswege
6 Termine · Modul "Technik 1"
223015c
Grundlagen IT- und Internettechnik
3 Termine · Modul "Technik 1"

Referenzen

Plattform
Code Crispies
Selbstlernplattform
QR Code

https://librete.ch/hdm/

' > build/index.html # Deploy define deploy_course @echo "Deploying $(1)..." scp build/$(1)/*.html $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ scp build/$(1)/*.pdf $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ 2>/dev/null || true + scp build/$(1)/*.svg $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ 2>/dev/null || true scp -r build/$(1)/assets/ $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ scp -r build/$(1)/materials/ $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ 2>/dev/null || true @echo "$(1) deployed!" @@ -208,6 +209,7 @@ deploy-c: build-c deploy-index: build-index @echo "Deploying root index..." scp build/index.html $(DEPLOY_HOST):$(HDM_DEPLOY_PATH)/ + scp build/qr-root.svg $(DEPLOY_HOST):$(HDM_DEPLOY_PATH)/ 2>/dev/null || true @echo "Root index deployed!" deploy: build-index deploy-b deploy-c deploy-index