deepchain start --compute-gpu=false --search-api=false --home ./testnet
deepchain keys list --home ./testnet --keyring-backend=test
git filter-branch --force --env-filter '
if [ "$GIT_AUTHOR_NAME" = "Your Old Name" ]; then
GIT_AUTHOR_NAME="Your New Name"
GIT_AUTHOR_EMAIL="[email protected]"
GIT_COMMITTER_NAME="Your New Name"
GIT_COMMITTER_EMAIL="[email protected]"
fi
' --tag-name-filter cat -- --all
## UV Virtual Environment Setup Plan | |
1. Verify uv installation | |
uv --version # Should output 0.6.5 | |
2. Create virtual environment with specified Python version | |
uv venv -p /opt/homebrew/bin/python3.11 .venv | |
* Creates environment in ./.venv directory |