mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-12 19:23:55 +00:00
13 lines
269 B
Bash
Executable File
13 lines
269 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
DB_PATH="${DIR}/../.hyperopt/mongodb"
|
|
|
|
mkdir -p "${DB_PATH}"
|
|
mongod --dbpath "${DB_PATH}" \
|
|
--bind_ip 127.0.0.1 \
|
|
--port 1234 \
|
|
--directoryperdb \
|
|
--journal \
|
|
--nohttpinterface
|