diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c99087 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +.Python +*.egg-info/ +dist/ +build/ +.eggs/ +*.egg +*.whl + +# Virtual environments +.venv/ +venv/ +env/ + +# uv +.uv/ +uv.lock + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +.tox/ + +# Type checking +.mypy_cache/ +.ruff_cache/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# MeshBay runtime (never commit) +hub_private.pem +node_state.json +bob_state.json +*.key +unlock.key +testfile.bin +hub.log +hub.pid + +# POC ephemeral files +poc/node_state.json +poc/bob_state.json +poc/testfile.bin |