My personal website, in gleam+lustre!
0
fork

Configure Feed

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

autofmts

+7 -5
+2 -2
.vscode/settings.json
··· 1 1 { 2 - "git.enabled": false 3 - } 2 + "git.enabled": false 3 + }
+1
README.md
··· 6 6 ```sh 7 7 gleam add homepage@1 8 8 ``` 9 + 9 10 ```gleam 10 11 import homepage 11 12
+4 -3
justfile
··· 3 3 [private] 4 4 default: 5 5 @just --list 6 + 6 7 # Run pre-build scripts, among which file embedding! 7 8 prepare: 8 9 mkdir -p src/homepage/from_prebuild 9 10 cp --update=none priv/codegen-templates/data.gleam src/homepage/from_prebuild/data.gleam 10 11 gleam run -m homepage/prepare 12 + 11 13 # Produce a JavaScript bundle in dist. 12 14 build: prepare 13 15 gleam run -m lustre/dev build 14 16 15 - # Runs two watchers and allows you to always get a 16 - # proper preview before pushing! 17 + # Runs two watchers and allows you to always get a proper preview before pushing! 17 18 preview: prepare preview-inner 18 19 20 + [parallel] 19 21 [private] 20 - [parallel] 21 22 preview-inner: prepare lustre_dev_start prepare-preview 22 23 23 24 [private]