mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 08:34:25 -06:00
23 lines
811 B
TOML
23 lines
811 B
TOML
[run]
|
|
init_cmds = [
|
|
["GO_BUILD_DEV=1", "make", "build-go"],
|
|
["make", "gen-jsonnet"],
|
|
["./bin/grafana", "server", "-profile", "-profile-addr=127.0.0.1", "-profile-port=6000", "-profile-block-rate=1", "-profile-mutex-rate=5", "-packaging=dev", "cfg:app_mode=development"]
|
|
]
|
|
watch_all = true
|
|
follow_symlinks = true
|
|
watch_dirs = [
|
|
"$WORKDIR/pkg",
|
|
"$WORKDIR/public/views",
|
|
"$WORKDIR/conf",
|
|
"$WORKDIR/devenv/dev-dashboards",
|
|
]
|
|
watch_exts = [".go", ".ini", ".toml", ".template.html"]
|
|
ignore_files = [".*_gen.go"]
|
|
build_delay = 1500
|
|
cmds = [
|
|
["GO_BUILD_DEV=1", "make", "build-go-fast"],
|
|
["make", "gen-jsonnet"],
|
|
["./bin/grafana", "server", "-profile", "-profile-addr=127.0.0.1", "-profile-port=6000", "-profile-block-rate=1", "-profile-mutex-rate=5", "-packaging=dev", "cfg:app_mode=development"]
|
|
]
|