summaryrefslogtreecommitdiff
path: root/flags.go
blob: c7d3cff44f361d5d7328e6e561d72358849bf880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main

import (
	"flag"
	"fmt"
)

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 injectExamples bool

func init() {
	flag.BoolVar(&printVersion, "version", false, "print version information")
	flag.BoolVar(&printVersion, "v",       false, "print version information")

	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)
	}
}