mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
10 lines
154 B
Bash
Executable File
10 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
if [[ "${TOXENV}" == *-rdb ]]; then
|
|
rethinkdb --daemon
|
|
elif [[ "${TOXENV}" == *-mdb ]]; then
|
|
sudo service mongod start
|
|
fi
|