Initial commit: Fat Kiss site — Hugo + Decap CMS

This commit is contained in:
2026-05-11 08:19:27 -10:00
commit aa0287eeaa
58 changed files with 3774 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
services:
build:
image: hugomods/hugo:exts
volumes:
- .:/src
working_dir: /src
command: hugo --minify --gc --cleanDestinationDir
preview:
image: hugomods/hugo:exts
volumes:
- .:/src
working_dir: /src
command: hugo server --bind 0.0.0.0 --port 1317 --baseURL http://localhost:1317 --disableFastRender
ports:
- "127.0.0.1:1317:1317"
restart: unless-stopped