Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
1663cbbb
Commit
1663cbbb
authored
Dec 15, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:torkelo/grafana-pro
Conflicts: .bra.toml
parents
90ae59cc
26ec8589
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
19 deletions
+8
-19
.bra.toml
+3
-3
.gitignore
+1
-1
Makefile
+1
-1
grafana
+1
-1
pkg/setting/setting.go
+2
-13
No files found.
.bra.toml
View file @
1663cbbb
[run]
init_cmds
=
[[
"./
grafana-pro
"
,
"web"
]]
init_cmds
=
[[
"./
bin/grafana
"
,
"web"
]]
watch_all
=
true
watch_dirs
=
[
"$WORKDIR/pkg"
,
...
...
@@ -9,6 +9,6 @@ watch_dirs = [
watch_exts
=
[
".go"
,
".ini"
]
build_delay
=
1500
cmds
=
[
[
"
go
"
,
"build"
],
[
"./
grafana-pro
"
,
"web"
]
[
"
make
"
,
"build"
],
[
"./
bin/grafana
"
,
"web"
]
]
.gitignore
View file @
1663cbbb
...
...
@@ -17,4 +17,4 @@ config.js
data/sessions
data/*.db
data/log
/
grafana-pro
/
bin/*
Makefile
View file @
1663cbbb
...
...
@@ -3,7 +3,7 @@
all
:
build
build
:
go build
../pkg/cmd/grafana-pro/
go build
-o
bin/grafana .
setup
:
go get github.com/tools/godep
...
...
grafana
@
373118c5
Subproject commit
79beefe57c608b3cd933c5b1f772c8707731a64c
Subproject commit
373118c5eecc5c3645254cb4b862124b55dae980
pkg/setting/setting.go
View file @
1663cbbb
...
...
@@ -6,7 +6,6 @@ package setting
import
(
"net/url"
"os"
"os/exec"
"path"
"path/filepath"
"runtime"
...
...
@@ -69,18 +68,8 @@ func init() {
log
.
NewLogger
(
0
,
"console"
,
`{"level": 0}`
)
}
// WorkDir returns absolute path of work directory.
func
WorkDir
()
(
string
,
error
)
{
execPath
,
err
:=
ExecPath
()
return
path
.
Dir
(
strings
.
Replace
(
execPath
,
"
\\
"
,
"/"
,
-
1
)),
err
}
func
ExecPath
()
(
string
,
error
)
{
file
,
err
:=
exec
.
LookPath
(
os
.
Args
[
0
])
if
err
!=
nil
{
return
""
,
err
}
p
,
err
:=
filepath
.
Abs
(
file
)
p
,
err
:=
filepath
.
Abs
(
"."
)
if
err
!=
nil
{
return
""
,
err
}
...
...
@@ -96,7 +85,7 @@ func NewConfigContext() {
Cfg
,
err
=
goconfig
.
LoadConfigFile
(
path
.
Join
(
workDir
,
"conf/grafana.ini"
))
if
err
!=
nil
{
log
.
Fatal
(
4
,
"Fail to parse '
conf/grafana.ini': %v"
,
err
)
log
.
Fatal
(
4
,
"Fail to parse '
%v/conf/grafana.ini': %v"
,
workDir
,
err
)
}
CustomPath
=
os
.
Getenv
(
"GRAFANA_CONF"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment