chore(cleanup): remove temporary development files and organize .gitignore structure

- Remove coordinator_working.py temporary test coordinator API
- Remove fix_gossip*.patch temporary patch files (gossip2, gossip3, gossip4)
- Add header comments to .gitignore documenting project organization completion
- Add Development Environment section with dev/env/, dev/cache/, dev/scripts/ patterns
- Update Development Tests section header and add dev/multi-chain/ patterns
- Add Logs & Runtime section with dev/cache/
This commit is contained in:
oib
2026-03-03 20:53:59 +01:00
parent f0c7cd321e
commit dabb297fa6
6 changed files with 30 additions and 207 deletions

32
.gitignore vendored
View File

@@ -1,4 +1,6 @@
# AITBC Monorepo ignore rules
# Updated: 2026-03-03 - Project organization workflow completed
# Development files organized into dev/ subdirectories
# ===================
# Python
@@ -30,6 +32,20 @@ htmlcov/
.env.local
.env.*.local
# ===================
# Development Environment (organized)
# ===================
dev/env/.venv/
dev/env/node_modules/
dev/env/cli_env/
dev/cache/.pytest_cache/
dev/cache/.ruff_cache/
dev/cache/.vscode/
dev/cache/logs/
dev/scripts/__pycache__/
dev/scripts/*.pyc
dev/scripts/*.pyo
# ===================
# Databases
# ===================
@@ -58,7 +74,7 @@ pnpm-lock.yaml
.cache/
# ===================
# Development Tests
# Development Tests (organized)
# ===================
dev/tests/__pycache__/
dev/tests/*.pyc
@@ -66,11 +82,15 @@ dev/tests/test_results/
dev/tests/simple_test_results.json
dev/tests/data/
dev/tests/*.db
dev/multi-chain/__pycache__/
dev/multi-chain/*.pyc
dev/multi-chain/test_results/
# ===================
# Logs & Runtime
# Logs & Runtime (organized)
# ===================
logs/
dev/cache/logs/
*.log
*.log.*
npm-debug.log*
@@ -130,6 +150,14 @@ secrets/
credentials/
.secrets
# ===================
# Backup Files (organized)
# ===================
backup/**/*.tmp
backup/**/*.temp
backup/**/.DS_Store
backup/updates/*.log
# ===================
# Temporary Files
# ===================