Files
chia-blockchain/scripts/run_all.sh
T
Florin ChiricaandGitHub b4d473197b Cluster (#96)
* Initial commit cluster

* Flake8

* mypy

* support IPv6; gather instead of create_task

* flake8
2020-02-25 20:34:56 +02:00

14 lines
501 B
Bash
Executable File

. .venv/bin/activate
. scripts/common.sh
# Starts a harvester, farmer, timelord, and full node
_run_bg_cmd python -m src.server.start_harvester
_run_bg_cmd python -m src.server.start_timelord
_run_bg_cmd python -m src.timelord_launcher
_run_bg_cmd python -m src.server.start_farmer
_run_bg_cmd python -m src.server.start_full_node --port=8444 --database_id=1 --connect_to_farmer=True --connect_to_timelord=True --rpc_port=8555
_run_bg_cmd python -m src.ui.start_ui --port=8222 --rpc_port=8555
wait