From 98ea44ef7d5315a293ba8e38069a3578f162aa4d Mon Sep 17 00:00:00 2001 From: root Date: Sat, 8 Aug 2026 13:06:10 -0400 Subject: [PATCH] chore: add .gitignore and project scaffolding --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..088084a --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file