Files
aitbc/.gitignore
aitbc1 b4b5a57390 refactor: clean up configuration and add production infrastructure
- Add .aitbc.yaml configuration file with test values
- Simplify .gitignore by removing merge conflicts and redundant entries
- Reorganize .gitignore sections for better clarity
- Set chain_id and proposer_id to empty strings in config.py (require explicit configuration)
- Add production Helm values configuration
- Add production nginx configuration
- Update environment variable handling in chain settings
2026-03-19 13:01:21 +01:00

136 lines
1.6 KiB
Plaintext

# AITBC Monorepo ignore rules
# ===================
# Python
# ===================
__pycache__/
*.pyc
*.pyo
*.pyd
*.so
.venv/
*/.venv/
venv/
env/
*.egg-info/
*.egg
.eggs/
pip-wheel-metadata/
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.ruff_cache/
# ===================
# Environment Files (SECRETS - NEVER COMMIT)
# ===================
*.env
.env.*
!.env.example
.env.local
.env.*.local
# ===================
# Database & Data
# ===================
*.db
*.sqlite
*.sqlite3
*.db-wal
*.db-shm
data/
apps/blockchain-node/data/
# ===================
# Logs & Runtime
# ===================
*.log
logs/
*.pid
*.seed
# ===================
# Secrets & Credentials
# ===================
*.pem
*.key
*.crt
*.p12
secrets/
credentials/
.secrets
.gitea_token.sh
keystore/
# ===================
# IDE & Editor
# ===================
.vscode/
.idea/
*.swp
*.swo
*~
# ===================
# OS Files
# ===================
.DS_Store
.DS_Store?
._*
Thumbs.db
ehthumbs.db
Desktop.ini
# ===================
# Build & Compiled
# ===================
build/
dist/
target/
*.o
*.a
*.lib
*.dll
*.dylib
# ===================
# Node.js
# ===================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ===================
# Windsurf IDE
# ===================
.windsurf/
.snapshots/
# ===================
# Wallet Files (contain private keys)
# ===================
*.json
home/client/client_wallet.json
home/genesis_wallet.json
home/miner/miner_wallet.json
# ===================
# Test Results
# ===================
test-results/
**/test-results/
# ===================
# Temporary Files
# ===================
tmp/
temp/
*.tmp
*.temp
*.bak
*.backup