mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-10 00:20:02 +00:00
Fix: Description for BaseURL was broken
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
fadd08d920
commit
3a6c0a7901
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ var storageDrivers = []string{"s3", "file"}
|
||||||
// Config is a storage struct for configuration parameters
|
// Config is a storage struct for configuration parameters
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Storage string `flag:"storage" default:"s3" description:"Storage engine to use"`
|
Storage string `flag:"storage" default:"s3" description:"Storage engine to use"`
|
||||||
BaseURL string `flag:"baseurl" env:"BASE_URL" description:" "The Base-URL the application is running on for example https://mondash.org"`
|
BaseURL string `flag:"baseurl" env:"BASE_URL" description:"The Base-URL the application is running on for example https://mondash.org"`
|
||||||
APIToken string `flag:"api-token" env:"API_TOKEN" description:"API Token used for the /welcome dashboard (you can choose your own)"`
|
APIToken string `flag:"api-token" env:"API_TOKEN" description:"API Token used for the /welcome dashboard (you can choose your own)"`
|
||||||
|
|
||||||
Listen string `flag:"listen" default:":3000" description:"Address to listen on"`
|
Listen string `flag:"listen" default:":3000" description:"Address to listen on"`
|
||||||
|
|
Loading…
Reference in a new issue