blob: 71d97d5ed17b7eb0faff83f515bd40fad33f5b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# !! The true source of this repo lives [HERE](https://git.kumardamani.net/kumardamani.net). Gitlab repo is for cicd ONLY. !!
My website/blog repo with Typst using html, and bundle experimental features.
```sh
nix develop
# dev server for live updates
typst watch --root . --features bundle,html -f bundle main.typ build
# compile
./build.sh
```
Gitlab CI will automatically inject a `ci.json` file:
```json
{
"date": "some date",
"link": "https://gitlab.com/.../job/42"
}
```
used by the `compile` step for the final output.
|