fb0b55d540
* ns-api: remove sqlite support ns-api: add env var to skip migrations for local dev ns-api: tidy up imports ns-api: fix deserialisation fo node descriptions update dockerfile update README fix up README and example env ns-api: bump major version to 4 ns-api: add more geoip data and new performance field in dvpn responses * ns-api: polyfill dVPN probe outcomes to make compatible with existing clients * Use explicit transaction for testrun status change (#6046) * Use explicit transaction for testrun status change * Improve run scripts * Skip locked rows * bump version 4.0.2 * Fix build.rs * Fix up .sqlx queries * Bump agent version and change dockerfile to run the agent in a loop * Make time between agents configurable by env var SLEEP_TIME * Update entrypoint.sh * Update Dockerfile with full path * Force bigint to avoid postgres numeric cast * Add override args to agent entry point, bump agent version and NS API version --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com> Co-authored-by: dynco-nym <173912580+dynco-nym@users.noreply.github.com>
45 lines
1.3 KiB
Bash
Executable File
45 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
user_rust_log_preference=$RUST_LOG
|
|
export ENVIRONMENT=${ENVIRONMENT:-"mainnet"}
|
|
export NYM_API_CLIENT_TIMEOUT=60
|
|
export DATABASE_URL="postgres://testuser:testpass@localhost:5433/nym_node_status_api_test"
|
|
# public counterpart of the agent's private key.
|
|
# For TESTING only. NOT used in any other environment
|
|
export NODE_STATUS_API_AGENT_KEY_LIST="H4z8kx5Kkf5JMQHhxaW1MwYndjKCDHC7HsVhHTFfBZ4J"
|
|
|
|
script_dir=$(dirname $(realpath "$0"))
|
|
monorepo_root=$(realpath "${script_dir}/../..")
|
|
|
|
function run_bare() {
|
|
# export necessary env vars
|
|
set -a
|
|
source "${monorepo_root}/envs/${ENVIRONMENT}.env"
|
|
set +a
|
|
export RUST_LOG=${user_rust_log_preference:-debug}
|
|
echo "RUST_LOG=${RUST_LOG}"
|
|
|
|
# --conection-url is provided in build.rs
|
|
cargo run --package nym-node-status-api
|
|
}
|
|
|
|
function run_docker() {
|
|
cargo build --package nym-node-status-api --release
|
|
cp ../target/release/nym-node-status-api .
|
|
|
|
cd ..
|
|
docker build -t node-status-api -f nym-node-status-api/Dockerfile.dev .
|
|
docker run --env-file envs/${ENVIRONMENT} \
|
|
-e EXPLORER_CLIENT_TIMEOUT=$EXPLORER_CLIENT_TIMEOUT \
|
|
-e NYM_API_CLIENT_TIMEOUT=$NYM_API_CLIENT_TIMEOUT \
|
|
-e DATABASE_URL="sqlite://node-status-api.sqlite?mode=rwc" \
|
|
-e RUST_LOG=${RUST_LOG} node-status-api
|
|
|
|
}
|
|
|
|
run_bare
|
|
|
|
# run_docker
|