You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains the source code for a static site built with [Lume](https://lume.land/), a Deno-based site generator.
4
+
5
+
## Prerequisites
6
+
7
+
-**Deno**: Install Deno (the workflow uses version 2.2.3).
8
+
-**Node.js**: Required for Tailwind CSS processing (Node 18+ recommended).
9
+
-**Tailwind CSS**: Handled automatically by the build tasks.
10
+
11
+
## Development
12
+
13
+
Build the site locally or serve it for development using Deno tasks defined in `deno.json`:
14
+
15
+
```bash
16
+
deno task build # Build the site into the `_site` directory
17
+
deno task serve # Start a local server and watch for changes
18
+
```
19
+
20
+
## Deployment
21
+
22
+
The site is deployed to **GitHub Pages** using the workflow in `.github/workflows/main.yml`. On pushes to the `main` branch, the workflow builds the site and uploads the `_site` directory to GitHub Pages.
0 commit comments