mirror of https://github.com/grafana/grafana.git
11 lines
262 B
Plaintext
11 lines
262 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
DEFAULT_RUNDIR=scripts/grafana-server/tmp
|
||
|
RUNDIR=${RUNDIR:-$DEFAULT_RUNDIR}
|
||
|
HOME_PATH=$PWD/$RUNDIR
|
||
|
PIDFILE=$RUNDIR/pid
|
||
|
DEFAULT_PACKAGE_FILE=dist/grafana-*linux-amd64.tar.gz
|
||
|
PROV_DIR=$RUNDIR/conf/provisioning
|
||
|
DEFAULT_HOST=localhost
|
||
|
DEFAULT_PORT=3001
|