add official wings ascii logo
This commit is contained in:
parent
4421349bfd
commit
260c9d70ab
14
README.md
14
README.md
|
@ -1,7 +1,17 @@
|
||||||
# Pterodactyl wings [![travis](https://img.shields.io/travis/schrej/wings.svg?style=flat-square)](https://travis-ci.org/schrej/wings) [![codacy quality](https://img.shields.io/codacy/grade/27a1576bda86450f853b1052b12fa570.svg?style=flat-square)](https://www.codacy.com/app/schrej/wings/dashboard) [![codacy coverage](https://img.shields.io/codacy/coverage/27a1576bda86450f853b1052b12fa570.svg?style=flat-square)](https://www.codacy.com/app/schrej/wings/files)
|
# Pterodactyl wings [![travis](https://img.shields.io/travis/Pterodactyl/wings.svg?style=flat-square)](https://travis-ci.org/Pterodactyl/wings) [![codacy quality](https://img.shields.io/codacy/grade/27a1576bda86450f853b1052b12fa570.svg?style=flat-square)](https://www.codacy.com/app/schrej/wings/dashboard) [![codacy coverage](https://img.shields.io/codacy/coverage/27a1576bda86450f853b1052b12fa570.svg?style=flat-square)](https://www.codacy.com/app/schrej/wings/files)
|
||||||
|
|
||||||
|
```
|
||||||
|
____
|
||||||
|
__ Pterodactyl _____/___/_______ _______ ______
|
||||||
|
\_____\ \/\/ / / / __ / ___/
|
||||||
|
\___\ / / / / /_/ /___ /
|
||||||
|
\___/\___/___/___/___/___ /______/
|
||||||
|
/_______/ alpha
|
||||||
|
```
|
||||||
|
|
||||||
A new generation of the Pterodactyl daemon, written in go.
|
A new generation of the Pterodactyl daemon, written in go.
|
||||||
|
|
||||||
**This project is currently in a very early stage. Do not use in production.**
|
## This project is currently in a very early stage. Do not use in production.
|
||||||
|
|
||||||
We are not accepting pull requests at this point of development. You are welcome to open issues with general feature requests and improvments compared to the current pterodactyl daemon. Please check if a similar issue, wether open or closed, exists already!
|
We are not accepting pull requests at this point of development. You are welcome to open issues with general feature requests and improvments compared to the current pterodactyl daemon. Please check if a similar issue, wether open or closed, exists already!
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
package command
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/Pterodactyl/wings/api"
|
"github.com/Pterodactyl/wings/api"
|
||||||
"github.com/Pterodactyl/wings/config"
|
"github.com/Pterodactyl/wings/config"
|
||||||
"github.com/Pterodactyl/wings/tools"
|
"github.com/Pterodactyl/wings/tools"
|
||||||
|
@ -31,16 +29,22 @@ func Execute() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func run(cmd *cobra.Command, args []string) {
|
func run(cmd *cobra.Command, args []string) {
|
||||||
fmt.Println("Loading configuration")
|
tools.InitLogging()
|
||||||
|
log.Info("Loading configuration")
|
||||||
if err := config.LoadConfiguration(nil); err != nil {
|
if err := config.LoadConfiguration(nil); err != nil {
|
||||||
log.WithError(err).Fatal("Failed to find configuration file")
|
log.WithError(err).Fatal("Failed to find configuration file")
|
||||||
}
|
}
|
||||||
tools.ConfigureLogging()
|
tools.ConfigureLogging()
|
||||||
|
|
||||||
log.Info("Starting wings.go version ", Version)
|
log.Info(` ____`)
|
||||||
|
log.Info(`__ Pterodactyl _____/___/_______ _______ ______`)
|
||||||
|
log.Info(`\_____\ \/\/ / / / __ / ___/`)
|
||||||
|
log.Info(` \___\ / / / / /_/ /___ /`)
|
||||||
|
log.Info(` \___/\___/___/___/___/___ /______/`)
|
||||||
|
log.Info(` /_______/ v` + Version)
|
||||||
|
log.Info()
|
||||||
|
|
||||||
// Load configuration
|
log.Info("Configuration loaded successfully.")
|
||||||
log.Info("Loading configuration...")
|
|
||||||
|
|
||||||
log.Info("Starting api webserver")
|
log.Info("Starting api webserver")
|
||||||
api := api.NewAPI()
|
api := api.NewAPI()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user