
For the hands-on class, there will be a special build of Flamenco. It disables Shaman on all platforms (for uniformity for all participants) and hard-codes `localhost` as URL for the Workers (to prevent participants' Workers from finding each other's Managers). The special build of Flamenco will be done on a separate branch (`bcon-2023`), but the website should stay for longer, and thus this commit is on the `main` branch.
7 lines
391 B
HTML
7 lines
391 B
HTML
{{- $os := .Get "os" | default "linux" -}}
|
|
{{- $arch := .Get "arch" | default "amd64" -}}
|
|
{{- $extension := .Get "ext" | default "tar.gz" -}}
|
|
{{- $version := .Get "version" | default $.Site.Data.flamenco.latestVersion -}}
|
|
{{- $filename := printf "flamenco-%s-%s-%s.%s" $version $os $arch $extension -}}
|
|
<a class="flamenco-download-link" href="/downloads/{{ $filename }}">{{ $filename }}</a>
|