Merge branch 'dev' of https://github.com/fosrl/pangolin into dev

This commit is contained in:
Milo Schwartz 2025-01-30 00:08:47 -05:00
commit 2b6552319c
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -19,7 +19,7 @@ experimental:
plugins:
badger:
moduleName: "github.com/fosrl/badger"
version: "v1.0.0-beta.3"
version: "{{.BadgerVersion}}"
log:
level: "INFO"

View file

@ -21,7 +21,7 @@ import (
func loadVersions(config *Config) {
config.PangolinVersion = "replaceme"
config.GerbilVersion = "replaceme"
// config.BadgerVersion = "replaceme"
config.BadgerVersion = "replaceme"
}
//go:embed fs/*
@ -30,6 +30,7 @@ var configFiles embed.FS
type Config struct {
PangolinVersion string
GerbilVersion string
BadgerVersion string
BaseDomain string
DashboardDomain string
LetsEncryptEmail string