8 lines
233 B
Bash
8 lines
233 B
Bash
#!/bin/bash
|
|
|
|
# Install the SQLite plugin
|
|
grafana cli --homepath . --config conf/grafana.ini --pluginsDir /memory/plugins plugins install frser-sqlite-datasource
|
|
|
|
# Run the server
|
|
grafana server --homepath . --config conf/grafana.ini
|