mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 08:34:25 -06:00
1c185ef8d8
- currently only the release is used as a fingerprint which produces caching issues for all lastest master builds - also add build commit to url fingerprint - make bra also watch go html template files
18 lines
417 B
TOML
18 lines
417 B
TOML
[run]
|
|
init_cmds = [
|
|
["go", "run", "build.go", "-dev", "build-server"],
|
|
["./bin/grafana-server", "cfg:app_mode=development"]
|
|
]
|
|
watch_all = true
|
|
watch_dirs = [
|
|
"$WORKDIR/pkg",
|
|
"$WORKDIR/public/views",
|
|
"$WORKDIR/conf",
|
|
]
|
|
watch_exts = [".go", ".ini", ".toml", ".template.html"]
|
|
build_delay = 1500
|
|
cmds = [
|
|
["go", "run", "build.go", "-dev", "build-server"],
|
|
["./bin/grafana-server", "cfg:app_mode=development"]
|
|
]
|