From 8882bbdc698ef7bdcc91d57c847db133ac5329d1 Mon Sep 17 00:00:00 2001 From: Matthew Ryan Dillon Date: Mon, 24 Mar 2025 21:10:19 -0400 Subject: [PATCH] reboot as pandoc-based markdown proj --- Dockerfile | 28 ++++++++++++++++++++++ app-nginx.conf.sigil | 38 ------------------------------ default.conf | 16 +++++++++++++ index.html | 56 -------------------------------------------- index.md | 26 ++++++++++++++++++++ now.html | 46 ------------------------------------ now.md | 17 ++++++++++++++ template.html | 23 ++++++++++++++++++ 8 files changed, 110 insertions(+), 140 deletions(-) create mode 100644 Dockerfile delete mode 100644 app-nginx.conf.sigil create mode 100644 default.conf delete mode 100644 index.html create mode 100644 index.md delete mode 100644 now.html create mode 100644 now.md create mode 100644 template.html diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..74b449e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,28 @@ +FROM nginx:stable + +RUN apt-get update && apt-get install -y \ + pandoc \ + --no-install-recommends && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +RUN mkdir -p /app/markdown + +COPY *.md /app/markdown +COPY *.md /usr/share/nginx/html +COPY template.html /app/markdown + +COPY default.conf /etc/nginx/conf.d + +RUN for md_file in /app/markdown/*.md; do \ + if [ -f "$md_file" ]; then \ + filename=$(basename -- "$md_file"); \ + name="${filename%.*}"; \ + echo "Converting $filename to $name.html"; \ + pandoc "$md_file" -o "/usr/share/nginx/html/$name.html" \ + --template=/app/markdown/template.html \ + --standalone; \ + fi; \ +done + +EXPOSE 80 \ No newline at end of file diff --git a/app-nginx.conf.sigil b/app-nginx.conf.sigil deleted file mode 100644 index 71bacff..0000000 --- a/app-nginx.conf.sigil +++ /dev/null @@ -1,38 +0,0 @@ -worker_processes 1; -error_log stderr; -pid nginx.pid; -daemon off; - -events { - worker_connections 768; -} - -http { - types_hash_max_size 2048; - include mime.types; - charset UTF-8; - server { - listen {{ $.PORT }}; - server_name _; - {{ if ne $.NGINX_ROOT "" }} - root /app/www/{{ $.NGINX_ROOT }}; - {{ else }} - root /app/www; - {{ end }} - index index.html; - port_in_redirect off; - - location /now { - try_files /now.html =404; - } - - location / { - {{ if ne $.NGINX_DEFAULT_REQUEST "" }} - try_files $uri $uri/ /{{ $.NGINX_DEFAULT_REQUEST }}; - {{ else }} - try_files $uri $uri/ =404; - {{ end }} - } - - } -} diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..40d1583 --- /dev/null +++ b/default.conf @@ -0,0 +1,16 @@ +server { + listen 80; + listen [::]:80; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri.html $uri/ =404; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } +} \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index 09d4f1b..0000000 --- a/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - thermokar.st - - - - -

- thermokar.st -

-

- senior software engineer at - klaviyo. -

-

- now | - resume | - curriculum vitae -

-

profiles

-
- -
-

properties

-
- -
- - diff --git a/index.md b/index.md new file mode 100644 index 0000000..115d42c --- /dev/null +++ b/index.md @@ -0,0 +1,26 @@ +# [thermokar.st](/) + +senior software engineer at [**klaviyo**](https://www.klaviyo.com/) + +## [now](/now) | [resume][resume] | [curriculum vitae][cv] + +## profiles + +- [https://github.com/thermokarst](https://github.com/thermokarst) +- [https://git.sr.ht/~thermokarst](https://git.sr.ht/~thermokarst) (squatting) +- [https://github.com/matthew-eb](https://github.com/matthew-eb) (inactive, job-specific) +- [https://github.com/matthew-kv](https://github.com/matthew-kv) (job-specific) +- [https://gitlab.com/thermokarst](https://gitlab.com/thermokarst) (mostly inactive) +- [https://thermokarst.itch.io/](https://thermokarst.itch.io/) + +## properties + +- [https://thermokar.st](https://thermokar.st) + - [gemini://devlog.thermokar.st](gemini://devlog.thermokar.st) ([http proxy](https://portal.mozz.us/gemini/devlog.thermokar.st)) + - [https://gpx.thermokar.st](https://gpx.thermokar.st) + - [https://zettel.thermokar.st](https://zettel.thermokar.st) +- [http://www.akdillon.net](http://www.akdillon.net) + - [http://akindices.akdillon.net](http://akindices.akdillon.net) + +[resume]: https://docs.google.com/document/d/e/2PACX-1vR44-lKPVikU7PjGKjO3vBlTXeTgULeowFSF75pHHjPPvwfKeNfU2M8YXsmURWCJGIyb2Chgst-5n7T/pub +[cv]: https://docs.google.com/document/d/e/2PACX-1vSSAGQWRA5yENXD6BwuTDY1EAMEMws4RcxfkW6wa8Y3jddS4d0C3go4-0mJO-94FHi1X_zRg8w-Cplp/pub \ No newline at end of file diff --git a/now.html b/now.html deleted file mode 100644 index c4b1bf0..0000000 --- a/now.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - thermokar.st - - - - -

- thermokar.st -

-

- now -

-
-

reading

- -
-
-

gaming

- -
-
-

music

- -
- - diff --git a/now.md b/now.md new file mode 100644 index 0000000..6c2db3a --- /dev/null +++ b/now.md @@ -0,0 +1,17 @@ +# [thermokar.st](/) + +## now + +### reading + +- The Terror + +### gaming + +- Elden Ring (PC) + +### music + +- Sleep Token - Sundowning +- Sleep Token - This Place Will Become Your Tomb +- Sleep Token - Take Me Back To Eden diff --git a/template.html b/template.html new file mode 100644 index 0000000..b5fe862 --- /dev/null +++ b/template.html @@ -0,0 +1,23 @@ + + + + + + thermokar.st + + + +
+ $body$ +
+ + +