mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 19:38:23 +00:00 
			
		
		
		
	Make the default action for the gitea executable that of running the webserver (#3331)
This commit is contained in:
		
				
					committed by
					
						 Lauris BH
						Lauris BH
					
				
			
			
				
	
			
			
			
						parent
						
							b5fba4cd42
						
					
				
				
					commit
					88a3bb6d42
				
			
							
								
								
									
										3
									
								
								main.go
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								main.go
									
									
									
									
									
								
							| @@ -35,6 +35,8 @@ func main() { | ||||
| 	app := cli.NewApp() | ||||
| 	app.Name = "Gitea" | ||||
| 	app.Usage = "A painless self-hosted Git service" | ||||
| 	app.Description = `By default, gitea will start serving using the webserver with no | ||||
| arguments - which can alternatively be run by running the subcommand web.` | ||||
| 	app.Version = Version + formatBuiltWith(Tags) | ||||
| 	app.Commands = []cli.Command{ | ||||
| 		cmd.CmdWeb, | ||||
| @@ -45,6 +47,7 @@ func main() { | ||||
| 		cmd.CmdAdmin, | ||||
| 	} | ||||
| 	app.Flags = append(app.Flags, []cli.Flag{}...) | ||||
| 	app.Action = cmd.CmdWeb.Action | ||||
| 	err := app.Run(os.Args) | ||||
| 	if err != nil { | ||||
| 		log.Fatal(4, "Failed to run app with %s: %v", os.Args, err) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user