add makefile to use docker based zola, fix some errors
This commit is contained in:
parent
d3982513d6
commit
e570d164b0
4 changed files with 10 additions and 5 deletions
5
Makefile
Normal file
5
Makefile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
build:
|
||||||
|
docker run -u "$(id -u):$(id -g)" -v ${PWD}:/app --workdir /app ghcr.io/getzola/zola:v0.17.1 build
|
||||||
|
|
||||||
|
serve:
|
||||||
|
docker run -u "$(id -u):$(id -g)" -v ${PWD}:/app --workdir /app -p 1111:1111 ghcr.io/getzola/zola:v0.17.1 serve --interface 0.0.0.0 --port 8080 --base-url localhost
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title: Intercepting Bluetooth Keyboard Events
|
title = "Intercepting Bluetooth Keyboard Events"
|
||||||
date: 2023-12-14
|
date = 2023-12-14
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = ["linux"]
|
tags = ["linux"]
|
||||||
categories = ["keyboard", "bluetooth"]
|
categories = ["keyboard", "bluetooth"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title: Emacs Debugging with Dape
|
title = "Emacs Debugging with Dape"
|
||||||
date: 2023-10-20
|
date = 2023-10-20
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = ["emacs"]
|
tags = ["emacs"]
|
||||||
categories = ["programming"]
|
categories = ["programming"]
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 6bc09fb50a27111e3987c6d2b7e1817ca739c2f4
|
Subproject commit d987049cd2660ab019ebaaf108aa69fff7fb847d
|
Loading…
Reference in a new issue