- Moved scattered scripts, templates, and documentation into organized directories (applications/, scripts/, assets/). - Updated .gitignore to strictly exclude secrets, state files, and IDE configs. - Added comprehensive README.md outlining repository structure and best practices. - Preserved all existing documentation and technical architecture files. - Prepared infrastructure/ for AWS Org and Proxmox Terraform management.
90 lines
801 B
Plaintext
90 lines
801 B
Plaintext
# IDE and Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Terraform
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
*.tfvars
|
|
terraform.tfvars
|
|
|
|
# Ansible
|
|
*.retry
|
|
|
|
# Secrets and credentials
|
|
*.pem
|
|
*.key
|
|
*.cert
|
|
*.crt
|
|
secrets/
|
|
credentials/
|
|
.env
|
|
.local.env
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Documentation build
|
|
_site/
|
|
.sass-cache/
|
|
.jekyll-cache/
|
|
.jekyll-metadata
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Desktop.ini
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# Project specific
|
|
.hermes/
|
|
hermes-workspace/
|
|
*.pyc
|
|
__pycache__/
|