summaryrefslogtreecommitdiff
path: root/bootstrap-standalone
blob: e76f50a9bd2498d11e84d5f90a8e588903deee2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash

# Bootstrap the Taler setup for the user account that
# is currently logged in.

# Generates a setup for a single user,
# including a postgresql DB.

set -eu

ENVNAME=$USER

cd $HOME

if ! test -d $HOME/gnunet; then
  git clone git://gnunet.org/gnunet.git
  git -C ~/gnunet checkout -q tags/taler-0.2.0
fi

if ! test -d $HOME/libmicrohttpd; then
  git clone git://gnunet.org/libmicrohttpd.git
  git -C ~/libmicrohttpd checkout -q tags/v0.9.52
fi

for component in bank merchant gnurl landing exchange merchant-frontends deployment; do
  if ! test -d $HOME/$component; then
    git clone /var/git/$component.git
  fi
done

for component in bank merchant landing exchange merchant-frontends; do
  echo "Checking out $component to $BRANCH"
  git -C $HOME/$component checkout $BRANCH
done

if ! test -d $HOME/talerdb; then
  /usr/lib/postgresql/9.5/bin/initdb -D talerdb -U $USER
fi

mkdir -p $HOME/sockets

cat >$HOME/activate <<EOL
#!/bin/bash

function taler-config-generate () {
  echo "Command disabled. Clease use taler-deployment-config-generate instead."
  return 1
}
function taler-exchange-keyup () {
  echo "Command disabled. Clease use taler-deployment-keyup instead."
}

export PATH="$HOME/deployment/bin:$HOME/local/bin:\$PATH"
export TALER_CHECKDB="postgres:///talercheck-$USER"
export TALER_CONFIG_CURRENCY=$CURRENCY
export TALER_CONFIG_ENV=$ENVNAME
export TALER_CONFIG_STANDALONE=1
EOL