forked from anti/kitchen-homepage
71 lines
1.1 KiB
Markdown
71 lines
1.1 KiB
Markdown
# Kitchen Homepage Mitmachanleitung
|
|
|
|
## git
|
|
|
|
### git installieren
|
|
|
|
Entweder mit dem jeweiligen Paketmanager oder:
|
|
|
|
https://git-scm.com/downloads
|
|
|
|
### homepage repo holen
|
|
|
|
git clone --recursive gogs@git.binary-kitchen.de:webredaktion/kitchen-homepage.git
|
|
|
|
### ins verzeichnis wechseln
|
|
|
|
cd kitchen-homepage
|
|
|
|
## hugo
|
|
|
|
### hugo installieren
|
|
|
|
linux:
|
|
|
|
snap install hugo
|
|
|
|
macos:
|
|
|
|
brew install hugo
|
|
|
|
windows:
|
|
|
|
choco install hugo -confirm
|
|
|
|
(oder https://gohugo.io/getting-started/installing/)
|
|
|
|
### lokalen sever starten
|
|
|
|
hugo serve
|
|
|
|
### anschauen
|
|
|
|
Im Terminal angezeigte URL im Browser öffnen
|
|
|
|
## content
|
|
|
|
### editieren
|
|
|
|
Inhalte in content/... ändern oder hinzufügen. zb. in
|
|
content/kitchenlog/2017/...
|
|
|
|
### änderungen ins repo aufnehmen
|
|
|
|
git add content/kitchenlog
|
|
git add public
|
|
git commit -m "new kitchenlog content"
|
|
|
|
### publizieren
|
|
|
|
git push
|
|
|
|
|
|
# TL;DR
|
|
|
|
Viele der Schritte oben braucht's nur einmal. Ist alles soweit am
|
|
Start, sieht eine Änderung beispielsweise so aus:
|
|
|
|
cd kitchen-homepage; git pull;
|
|
vi content/kitchenlog/2017/November.md;
|
|
git add content public; git commit -m "new kitchenlog content"; git push
|