Revision de1cfc120fbc7dc08e55dfae1733804c0996e20d authored by Christopher Moyer on 17 October 2022, 14:02:22 UTC, committed by GitHub on 17 October 2022, 14:02:22 UTC
* adds modify dashboard settings docs

* Quick updates

* minor corrections

Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
1 parent 5d53a98
Raw File
start-and-run-suite
#!/bin/bash

. scripts/grafana-server/variables

if [ "$BASE_URL" != "" ]; then
    echo -e "BASE_URL set, skipping starting server"
else
  # Start it in the background
  ./scripts/grafana-server/start-server 2>&1 > scripts/grafana-server/server.log &
  ./scripts/grafana-server/wait-for-grafana
fi

./e2e/run-suite "$@"
back to top