summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap19
1 files changed, 19 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..8c5a62c
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+set -eu
+
+base=${TALER_DEPLOYMENT_BASE:-$HOME}
+
+mkdir -p base
+
+cd $base
+
+if ! test -d $base/gnunet; then
+ svn checkout https://gnunet.org/svn/gnunet
+fi
+
+for component in merchant mint landing exchange merchant-frontends deployment; do
+ if ! test -d $base/$component; then
+ git clone /var/git/$component.git
+ fi
+done