2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-06-29 22:51:22 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2021-11-27 02:01:06 +00:00
|
|
|
_ "github.com/joho/godotenv/autoload"
|
2024-01-10 14:34:44 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-10-27 19:03:14 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2024-01-10 14:34:44 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
_ "go.woodpecker-ci.org/woodpecker/v2/cmd/server/docs"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/version"
|
2017-06-29 22:51:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := cli.NewApp()
|
2021-09-21 15:06:13 +00:00
|
|
|
app.Name = "woodpecker-server"
|
2019-11-12 20:08:17 +00:00
|
|
|
app.Version = version.String()
|
2021-09-21 15:06:13 +00:00
|
|
|
app.Usage = "woodpecker server"
|
2021-11-23 14:36:52 +00:00
|
|
|
app.Action = run
|
2023-07-25 13:55:29 +00:00
|
|
|
app.Commands = []*cli.Command{
|
|
|
|
{
|
|
|
|
Name: "ping",
|
|
|
|
Usage: "ping the server",
|
|
|
|
Action: pinger,
|
|
|
|
},
|
|
|
|
}
|
2017-06-29 22:51:22 +00:00
|
|
|
app.Flags = flags
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
setupSwaggerStaticConfig()
|
|
|
|
|
2017-06-29 22:51:22 +00:00
|
|
|
if err := app.Run(os.Args); err != nil {
|
2024-01-10 14:34:44 +00:00
|
|
|
log.Fatal().Err(err).Msgf("error running server") //nolint:forbidigo
|
2017-06-29 22:51:22 +00:00
|
|
|
}
|
|
|
|
}
|