mozhi/cmd/serve.go

28 lines
602 B
Go
Raw Normal View History

2023-06-25 00:10:57 +05:30
package cmd
import (
"github.com/spf13/cobra"
"codeberg.org/aryak/mozhi/serve"
2023-06-25 00:10:57 +05:30
)
var port string = "3000"
var serveCmd = &cobra.Command{
Use: "serve",
Short: "Start the web server.",
Long: `Start the web server.`,
Run: func(cmd *cobra.Command, args []string) {
serve.Serve(port)
},
}
func init() {
rootCmd.AddCommand(serveCmd)
serveCmd.Flags().StringVarP(&port, "port", "p", "", "The port Mozhi will listen to. Defaults to 3000, and overrides the MOZHI_PORT environment variable.")
2023-06-25 00:10:57 +05:30
// set port variable to the value of the port flag
port = serveCmd.Flag("port").Value.String()
}