34 lines
1.2 KiB
Go
34 lines
1.2 KiB
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var buildCmd = &cobra.Command{
|
||
|
Use: "build",
|
||
|
Short: "Build standalone, portable webapp from Calibre library.",
|
||
|
Long: `Build searchable, standalone, portable webapp against the local Calibre
|
||
|
library including all the metadata needed. It creates BROWSE_LIBRARY.html in
|
||
|
root directory of the local Calibre library. For search (authors, titles,
|
||
|
tags...) it uses rendered metadata from static/data{1-8}.js files.
|
||
|
|
||
|
Every time the directory path and/or librarian is provided it is saved in
|
||
|
the configuration file for the future use (therefore: 'accorder build PROFILE'
|
||
|
should be enough for the next successful build).`,
|
||
|
Args: OnlyProfileArgument,
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
fmt.Println(args)
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(buildCmd)
|
||
|
buildCmd.PersistentFlags().StringP("directory", "d", "", "A local Calibre directory path.")
|
||
|
buildCmd.PersistentFlags().StringP("librarian", "l", "", "Librarian's name.")
|
||
|
buildCmd.PersistentFlags().StringP("jsonpath", "j", "", "Path where to render all metadata into JSON.")
|
||
|
buildCmd.PersistentFlags().StringP("bibtex", "b", "", "Import books from BibTex file into Calibre.")
|
||
|
CustomHelpOutput(buildCmd)
|
||
|
}
|