55d51bd84f
* feat(db queries): adds db query scripts for determining db sizes * Adds a new metric `speckle_db_tablesize` with db table sizes * lower case all the file types to provide a combined metric * group file status count by lower cased file type * reinstate accidentally deleted metric * Fix developer script
11 lines
311 B
Bash
Executable File
11 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
GIT_ROOT="$(git rev-parse --show-toplevel)"
|
|
|
|
export PG_CONNECTION_STRING=postgres://speckle:speckle@localhost/speckle
|
|
pushd "${GIT_ROOT}/utils/monitor-deployment"
|
|
trap popd EXIT
|
|
pip install --disable-pip-version-check --requirement ./requirements.txt
|
|
python3 -u src/run.py
|