chore: add .gitignore and project scaffolding

This commit is contained in:
root
2026-08-08 13:06:11 -04:00
parent 3b88badd60
commit a6ae6029e9
2 changed files with 50 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
*.egg
.venv/
venv/
# Node
node_modules/
.next/
dist/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Secrets
.env
*.pem
*.key
credentials.json
# Docker
*.log
# Terraform
.terraform/
*.tfstate*
# Hermes
.hermes/cache/
.hermes/audio_cache/
# Project-specific
*.db-journal
*.db-wal
+6
View File
@@ -0,0 +1,6 @@
# mcp-servers — CHANGELOG
## 2026-07-16 — Audit Remediation
- Created CHANGELOG.md (missing per project documentation standard)
- Project directory: `/root/projects/mcp-servers`