[READ-ONLY] Mirror of https://github.com/shuuji3/weblog. ๐ŸŒŽ Weblog Articles powered by Hugo weblog.shuuji3.xyz
0

Configure Feed

Select the types of activity you want to include in your feed.

build(Makefile): fix conflicting port and container name issue not needed

+1 -1
+1 -1
Makefile
··· 2 2 3 3 post: 4 4 @read -p 'What is the article title? (e.g. hello-world) > ' title; \ 5 - docker run --rm --name "weblog-serve" -p 1313:1313 -v $(CURDIR):/src --workdir /src -e HUGO_WATCH=1 -u $(shell id -u) jojomi/hugo hugo new post/$(shell date +%Y-%m-%d)-$$title.md; \ 5 + docker run --rm -v $(CURDIR):/src --workdir /src -u $(shell id -u) jojomi/hugo hugo new post/$(shell date +%Y-%m-%d)-$$title.md; \ 6 6 idea content/post/$(shell date +%Y-%m-%d)-$$title.md 7 7 8 8 serve: