Loading
Loading
This information was auto-extracted from the GitHub repository and may be incomplete or out of date. Always refer to the subnet's GitHub repository for the latest instructions.
x86_64 architecture; minimum CPU speed 2.0 GHz per core; recommended 4 cores at 3.0 GHz; SSD storage preferred with minimum 1000 IOPS; 4 GB minimum swap, 8 GB recommended swap; Miners calling OpenAI API require OPENAI_API_KEY
x86_64 architecture; minimum CPU speed 2.5 GHz per core; recommended 8 cores at 3.5 GHz; SSD storage preferred with minimum 1000 IOPS, 5000 IOPS recommended; 4 GB minimum swap, 8 GB recommended swap
Create and activate Python 3.12 virtual environment
python -m venv .venv && source .venv/bin/activate
Install tag101 and dependencies from current directory
pip install -e .
Copy Docker miner configuration template(optional)
cp deploy/miner.docker.example miner.env
Edit miner.env to configure network, wallet, hotkey, axon port, and OpenAI API credentials(optional)
$EDITOR miner.env
Build Docker image for miner (recommended approach)(optional)
python -m tag101.deploy.docker_node build --image tag101:latest
Start miner in Docker container(optional)
python -m tag101.deploy.docker_node start --role miner --name sn101-miner --env-file miner.env
Alternative: Configure PM2 environment file for host-based deployment(optional)
cp deploy/miner.pm2.env.example miner.pm2.env && $EDITOR miner.pm2.env
Alternative: Start miner with PM2 on host(optional)
python -m tag101.deploy.pm2_node start --role miner --name sn101-miner --env-file miner.pm2.env
Create and activate Python 3.12 virtual environment
python -m venv .venv && source .venv/bin/activate
Install tag101 and dependencies from current directory
pip install -e .
Copy Docker validator configuration template(optional)
cp deploy/validator.docker.example validator.env
Edit validator.env to configure network, wallet, hotkey, and axon settings(optional)
$EDITOR validator.env
Build Docker image for validator (recommended approach)(optional)
python -m tag101.deploy.docker_node build --image tag101:latest
Start validator in Docker container(optional)
python -m tag101.deploy.docker_node start --role validator --name sn101-validator --env-file validator.env
Alternative: Configure PM2 environment file for host-based deployment(optional)
cp deploy/validator.pm2.env.example validator.pm2.env && $EDITOR validator.pm2.env
Alternative: Start validator with PM2 on host(optional)
python -m tag101.deploy.pm2_node start --role validator --name sn101-validator --env-file validator.pm2.env