mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
5a4f690807
* WIP: initial commit to transition to new edit mode * More old edit cleanup * Minor update * Refactoring url edit/fullscreen state to simplify logic, now seperate states * Fixed tests and part of the explore integration * Updated snapshot * Fix alert rule links * Fixed issue going back from explore * Updated snapshots * Fixes and changes * Fixed bridge srv issue * Fixed add panel issue * Removed console log * Removed render * Tests: fixes e2e smoketest * Make description optional * Fixed typings * e2e fixes * removed import * updated snapshot Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com>
49 lines
951 B
Bash
Executable File
49 lines
951 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
. e2e/variables
|
|
|
|
./e2e/kill-server
|
|
|
|
mkdir $RUNDIR
|
|
|
|
echo -e "Copying grafana backend files to temp dir..."
|
|
|
|
if [ -f $PACKAGE_FILE ]; then
|
|
echo "Found package tar file, extracting..."
|
|
tar zxf $PACKAGE_FILE -C $RUNDIR
|
|
mv $RUNDIR/grafana-*/* $RUNDIR
|
|
else
|
|
echo "Copying local dev files"
|
|
|
|
cp -r ./bin $RUNDIR
|
|
cp -r ./public $RUNDIR
|
|
cp -r ./tools $RUNDIR
|
|
|
|
mkdir $RUNDIR/conf
|
|
mkdir $PROV_DIR
|
|
mkdir $PROV_DIR/datasources
|
|
mkdir $PROV_DIR/dashboards
|
|
|
|
cp ./conf/defaults.ini $RUNDIR/conf/defaults.ini
|
|
fi
|
|
|
|
echo -e "Copy provisioning setup from devenv"
|
|
|
|
cp devenv/datasources.yaml $PROV_DIR/datasources
|
|
cp devenv/dashboards.yaml $PROV_DIR/dashboards
|
|
|
|
cp -r devenv $RUNDIR
|
|
|
|
echo -e "Starting Grafana Server port $PORT"
|
|
|
|
$RUNDIR/bin/grafana-server \
|
|
--homepath=$RUNDIR \
|
|
--pidfile=$RUNDIR/pid \
|
|
cfg:server.http_port=$PORT \
|
|
cfg:app_mode=development
|
|
|
|
# 2>&1 > $RUNDIR/output.log &
|
|
# cfg:log.level=debug \
|
|
|