feat(misc): allows user edition, templating of the home, and more
All checks were successful
build / build (push) Successful in 2m9s

This commit is contained in:
Thomas Maurice 2024-02-14 18:50:35 +01:00
parent 09d3149932
commit d08f82ba66
Signed by: thomas
GPG key ID: 1D577F50583032A6
8 changed files with 144 additions and 15 deletions

View file

@ -16,8 +16,11 @@ type Config struct {
Database string `yaml:"database"`
SSLMode string `yaml:"sslmode"`
} `yaml:"postgres"`
DefaultProvider string `yaml:"defaultProvider"`
Providers struct {
Defaults struct {
HomeTemplate string `yaml:"homeTemplate"`
Provider string `yaml:"provider"`
} `yaml:"defaults"`
Providers struct {
OVH *providerConfigs.OVHConfig `yaml:"ovh"`
} `yaml:"providers"`
Test *struct {