mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 19:54:10 -06:00
de99ce139c
* avoid the need for a second bulky binary for grafana-cli * look for grafana-server in $PATH as well as same directory * implement unified "grafana" command * update dockerfiles, fix grafana-cli -v * update packaging to work with single binary - add wrapper scripts for grafana and grafana-server - update and sync package files - implement --sign flag of build package command - stop packaging scripts folder, they are not useful for end users - add support for --configOverrides in server command - remove unused nfpm.yaml config file * windows support
12 lines
130 B
Go
12 lines
130 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/grafana/grafana/pkg/util/cmd"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(cmd.RunGrafanaCmd("server"))
|
|
}
|