#!/bin/bash # Bootstrap a standalone Taler installation from source, # on one single user account, without blue/green deployment. set -eu base=$HOME mkdir -p $base cd $base if ! test -d $base/gnunet; then svn checkout https://gnunet.org/svn/gnunet fi if ! test -d $base/libmicrohttpd; then svn checkout https://gnunet.org/svn/libmicrohttpd fi for component in bank merchant gnurl landing exchange merchant-frontends deployment; do if ! test -d $base/$component; then git clone git://taler.net/$component fi done cat >$base/activate <