33 lines
354 B
Markdown
33 lines
354 B
Markdown
|
# dgnum.eu
|
||
|
|
||
|
This is the website for dgnum.eu
|
||
|
|
||
|
Enable nix flakes and install direnv.
|
||
|
|
||
|
## Deploy
|
||
|
|
||
|
TODO auto deploy from master using gitea hooks.
|
||
|
|
||
|
## Build Static Site
|
||
|
|
||
|
```
|
||
|
nix build
|
||
|
```
|
||
|
|
||
|
## Writing Posts
|
||
|
|
||
|
```console
|
||
|
direnv allow
|
||
|
cd site
|
||
|
ssg clean
|
||
|
ssg rebuild
|
||
|
ssg watch
|
||
|
```
|
||
|
|
||
|
## Working on the Static Site Generator
|
||
|
|
||
|
```console
|
||
|
nix develop .#ssg
|
||
|
cd ssg
|
||
|
```
|