mixtape/readme.md
Emil Miler ed49c101d3
All checks were successful
Build / build (push) Successful in 5m33s
Integrate Zola
2024-02-06 14:18:25 +01:00

36 lines
747 B
Markdown

## Requirements
- [`chordpro`](https://github.com/ChordPro/chordpro/)
- `ghostscript`
- `zola` (optional)
## Building
`make` defaults to `all` which builds individual PDF and HTML files for
all songs. It also builds two complete songbooks for *mixtape* and *classic*.
Available targets: `all`, `pdf`, `html`, `clean`
You can also build PDF for a specific page with:
```
chordpro --config=chordpro.json path/to/song.cho
```
or build HTML output with:
```
chordpro --config=chordpro.json -o path/to/song.html path/to/song.cho
```
### Static website output
Futhermore, the project is ready to be compiled into a static webpage using
[Zola](https://www.getzola.org/).
```
zola build
```
This is done by default during the deploy pipeline.