mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 08:34:42 +01:00
62 lines
3.1 KiB
Go
62 lines
3.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/osteele/gojekyll/config"
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
|
)
|
|
|
|
// Command-line options
|
|
var (
|
|
options config.Flags
|
|
profile = false
|
|
quiet = false
|
|
)
|
|
|
|
var (
|
|
app = kingpin.New("gojekyll", "a (somewhat) Jekyll-compatible blog generator")
|
|
source = app.Flag("source", "Source directory").Short('s').Default(".").ExistingDir()
|
|
_ = app.Flag("destination", "Destination directory").Short('d').Action(stringVar("destination", &options.Destination)).String()
|
|
_ = app.Flag("drafts", "Render posts in the _drafts folder").Short('D').Action(boolVar("drafts", &options.Drafts)).Bool()
|
|
_ = app.Flag("future", "Publishes posts with a future date").Action(boolVar("future", &options.Future)).Bool()
|
|
_ = app.Flag("unpublished", "Render posts that were marked as unpublished").Action(boolVar("unpublished", &options.Unpublished)).Bool()
|
|
versionFlag = app.Flag("version", "Print the name and version").Short('v').Bool()
|
|
|
|
build = app.Command("build", "Build your site").Alias("b")
|
|
clean = app.Command("clean", "Clean the site (removes site output) without building.")
|
|
|
|
benchmark = app.Command("benchmark", "Repeat build for ten seconds. Implies --profile.")
|
|
|
|
render = app.Command("render", "Render a file or URL path to standard output")
|
|
renderPath = render.Arg("PATH", "Path or URL").String()
|
|
|
|
routes = app.Command("routes", "Display site permalinks and associated files")
|
|
dynamicRoutes = routes.Flag("dynamic", "Only show routes to non-static files").Bool()
|
|
|
|
serve = app.Command("serve", "Serve your site locally").Alias("server").Alias("s")
|
|
open = serve.Flag("open-url", "Launch your site in a browser").Short('o').Bool()
|
|
_ = serve.Flag("host", "Host to bind to").Short('H').Action(stringVar("host", &options.Host)).String()
|
|
_ = serve.Flag("port", "Port to listen on").Short('P').Action(intVar("port", &options.Port)).Int()
|
|
|
|
variables = app.Command("variables", "Display a file or URL path's variables").Alias("v").Alias("var").Alias("vars")
|
|
variablePath = variables.Arg("PATH", "Path, URL, site, or site...").String()
|
|
|
|
versionCmd = app.Command("version", "Print the name and version")
|
|
)
|
|
|
|
func init() {
|
|
app.HelpFlag.Short('h')
|
|
app.Flag("profile", "Create a Go pprof CPU profile").BoolVar(&profile)
|
|
app.Flag("quiet", "Silence (some) output.").Short('q').BoolVar(&quiet)
|
|
_ = app.Flag("verbose", "Print verbose output.").Short('V').Action(boolVar("verbose", &options.Verbose)).Bool()
|
|
build.Flag("dry-run", "Dry run").Short('n').BoolVar(&options.DryRun)
|
|
|
|
// these flags are just present on build and serve, but I don't see a DRY way to say this
|
|
app.Flag("incremental", "Enable incremental rebuild.").Short('I').Action(boolVar("incremental", &options.Incremental)).Bool()
|
|
app.Flag("force_polling", "Force watch to use polling").BoolVar(&options.ForcePolling)
|
|
|
|
// --watch has different defaults for build and serve
|
|
watchText := "Watch for changes and rebuild"
|
|
build.Flag("watch", watchText).Short('w').BoolVar(&options.Watch)
|
|
serve.Flag("watch", watchText).Short('w').Default("true").BoolVar(&options.Watch)
|
|
}
|