mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-12 02:24:38 -05:00
* Initial commit cluster * Flake8 * mypy * support IPv6; gather instead of create_task * flake8
14 lines
501 B
Bash
Executable File
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
|