Add default value for config

This commit is contained in:
2025-11-10 13:42:39 +01:00
parent f8ad54392a
commit 870158e489

View File

@@ -9,11 +9,11 @@ import (
)
type Config struct {
Port string `toml:"port" comment:"The port to listen on for the server."`
DatabaseFilePath string `toml:"database_file_path" comment:"Path to sqlite database file."`
Port string `toml:"port" default:"8080" comment:"The port to listen on for the server."`
DatabaseFilePath string `toml:"database_file_path" default:"plm.db" comment:"Path to sqlite database file."`
DemoDataPath string `toml:"demo_data_path" comment:"The path to the sql file to load for demo data."`
JWTKey string `toml:"jwt_key" comment:"The key used to encrypt the generated JWT. Encoded in base64. If empty a random one will be generated on every restart."`
ImageFolderPath string `toml:"image_folder_path" comment:"Folder where uploaded files will be stored."`
ImageFolderPath string `toml:"image_folder_path" default:"img" comment:"Folder where uploaded files will be stored."`
}
func defaultConfig() Config {