Files
chia-blockchain/scripts/chia-start-all
T

12 lines
393 B
Plaintext
Executable File

. _chia-common
# 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 --connect_to_farmer=True --connect_to_timelord=True --rpc_port=8555
wait