diff options
author | xengineering <me@xengineering.eu> | 2024-05-09 22:33:42 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-09 22:37:03 +0200 |
commit | 0ac3cc76b4b6c824c4b3f7a357d40b487984abfb (patch) | |
tree | 5391e5f27b344d9eab288876052ec63a2f97db72 /flags.go | |
parent | 0142af99aba36241c276a56a088e7aac10c62f86 (diff) | |
download | ceres-0ac3cc76b4b6c824c4b3f7a357d40b487984abfb.tar ceres-0ac3cc76b4b6c824c4b3f7a357d40b487984abfb.tar.zst ceres-0ac3cc76b4b6c824c4b3f7a357d40b487984abfb.zip |
Inject examples only with new --example flag
The default use case should be to not inject example recipes.
Diffstat (limited to 'flags.go')
-rw-r--r-- | flags.go | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -8,13 +8,16 @@ import ( const help = `Ceres - Recipe server for local networks Usage: ceres [-h | --help] [-v | --version] [-c | --config] + [-e | --example] -h, --help show this help page and exit -v, --version print version information -c, --config file path to configuration file + -e, --examples inject example recipes on startup ` -var printVersion bool +var printVersion bool +var injectExamples bool func init() { flag.BoolVar(&printVersion, "version", false, "print version information") @@ -23,6 +26,9 @@ func init() { flag.StringVar(&config.Path, "config", "", "file path to configuration file") flag.StringVar(&config.Path, "c", "", "file path to configuration file") + flag.BoolVar(&injectExamples, "examples", false, "inject example recipes on startup") + flag.BoolVar(&injectExamples, "e", false, "inject example recipes on startup") + flag.Usage = func() { fmt.Fprintf(flag.CommandLine.Output(), help) } |