#!/usr/bin/env bash # Start the local database used for Taler if necessary (because we're a # standalone environment) and possible. set -eu base=$HOME export PATH="$base/deployment":$PATH ulimit -c $((100 * 1024)) cd $HOME if [[ ! -e ~/local/bin/gnunet-arm ]]; then echo "not starting database, since gnunet-arm is not installed" exit fi if [ "${TALER_CONFIG_STANDALONE:-0}" = 1 ]; then taler-deployment-arm -s taler-deployment-arm -i taler-postgres-standalone fi