1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-23 01:36:42 +02:00

Include db backend (rethinkdb) when call bigchaindb configure

This commit is contained in:
Troy McConaghy 2017-02-03 10:01:36 +01:00
parent e98a161805
commit 5750027cd4
2 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ def install_bigchaindb_from_git_archive():
@task
@parallel
def configure_bigchaindb():
run('bigchaindb -y configure', pty=False)
run('bigchaindb -y configure rethinkdb', pty=False)
# Send the specified configuration file to

View File

@ -34,5 +34,5 @@ mkdir $CONFDIR
for (( i=0; i<$NUMFILES; i++ )); do
CONPATH=$CONFDIR"/bcdb_conf"$i
echo "Writing "$CONPATH
bigchaindb -y -c $CONPATH configure
bigchaindb -y -c $CONPATH configure rethinkdb
done