Complete architecture and directory structure for the Funchal micro-economy deployment: Documentation: - README.md: Project overview, architecture, services, metrics, governance - PRD.md: Product requirements document - ARCHITECTURE.md: Multi-layered mesh architecture, node specs, topology - GOVERNANCE.md: DAO model, treasury, voting, dispute resolution - ROADMAP.md: Phased implementation plan (Months 1-24) - DEPLOYMENT.md: Mesh network deployment guide Services: - mobility/: Decentralized ride-sharing - housing/: Decentralized house-sharing - logistics/: Local delivery network - commerce/: Bitcoin-accepting businesses - workforce/: Job boards, training, competency attestation - governance/: Mesh services and decentralized operations Infrastructure: - infrastructure/: Mesh networks, archipelago nodes (200 nodes), internet - config/: node.yml, mesh.yml, bitcoin.yml, profiles.yml, redis.yml - docs/: Funchal service map, business onboarding, mobility plan - scripts/: Deploy script - .gitignore
38 lines
283 B
Plaintext
38 lines
283 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
*.log
|
|
*.tmp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build outputs
|
|
build/
|
|
dist/
|
|
*.o
|
|
*.so
|
|
*.pyc
|
|
|
|
# Config secrets
|
|
config/*.secret.yml
|
|
config/*.pem
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Cache
|
|
.cache/
|
|
|
|
# Generated files
|
|
*.min.js
|
|
*.min.css
|
|
|
|
# NodeZero local
|
|
data/
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*~
|