From 3a272c223c4122946eb61c7677723c760b996643 Mon Sep 17 00:00:00 2001 From: graphiteisaac Date: Fri, 25 Jul 2025 19:49:42 +1000 Subject: [PATCH] add cycles and some cruft --- package.json | 1 + priv/posts/cycles.md | 37 +++++++++++++++++++++++++++++++++++++ vite.config.ts | 12 ++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 priv/posts/cycles.md create mode 100644 vite.config.ts diff --git a/package.json b/package.json index 01b7eb4..744a6bc 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ }, "scripts": { "build": "gleam run build", + "dev": "vite", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], diff --git a/priv/posts/cycles.md b/priv/posts/cycles.md new file mode 100644 index 0000000..8b48c37 --- /dev/null +++ b/priv/posts/cycles.md @@ -0,0 +1,37 @@ +--- +title: Cycles +week: 23 +date: 2025-06-11 +--- +a well deserved break,\ +then becomes holiday\ +prepare to go back,\ +did we ever get away? + +it's a new group to learn,\ +a space to decorate\ +we all settle in,\ +here to face the same fate + +they grow and they learn,\ +progress feels steady\ +reports come and go,\ +they'll never feel ready + +a long sluggish term,\ +the weeks never end\ +events, celebrations,\ +exhaustion, a new friend + +the end is in sight,\ +fear and joy seep in\ +shut down our brains,\ +till the new year's begin ++++ +It turns a circle round\ +To spin a web of lies\ +A trick known by those wise + +It's hand shown not as dealt\ +A fibs betrayal felt\ +Signed with delayed sound diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..a98943c --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from "vite"; +import gleam from "vite-gleam"; +import tailwindcss from "@tailwindcss/vite"; + +export async function run_vite_server() {} + +export default defineConfig({ + server: { + port: 1337, + }, + plugins: [gleam(), tailwindcss()], +});