mirror of
https://codeberg.org/aryak/mozhi
synced 2024-11-08 19:12:25 +05:30
28 lines
602 B
Go
28 lines
602 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"codeberg.org/aryak/mozhi/serve"
|
|
)
|
|
|
|
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.")
|
|
|
|
// set port variable to the value of the port flag
|
|
port = serveCmd.Flag("port").Value.String()
|
|
}
|