- Added lock file exclusions for pnpm in .gitignore. - Removed obsolete package-lock.json from the api and portal directories. - Enhanced Cloudflare adapter with additional interfaces for zones and tunnels. - Improved Proxmox adapter error handling and logging for API requests. - Updated Proxmox VM parameters with validation rules in the API schema. - Enhanced documentation for Proxmox VM specifications and examples.
164 lines
1.6 KiB
Plaintext
164 lines
1.6 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage/
|
|
*.lcov
|
|
.nyc_output
|
|
|
|
# Production
|
|
build/
|
|
dist/
|
|
.next/
|
|
out/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Lock files (using pnpm)
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Local env files
|
|
.env
|
|
.env*.local
|
|
.env.production
|
|
.env.development
|
|
.env.test
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Downloaded binaries
|
|
*.tar.gz
|
|
kind
|
|
go*.tar.gz
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets and credentials (DoD/MilSpec compliance)
|
|
*.secret
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
secrets/
|
|
credentials/
|
|
*.credentials
|
|
.env.production
|
|
.env.staging
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Terraform
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
.terraform.lock.hcl
|
|
terraform.tfvars
|
|
|
|
# Kubernetes secrets
|
|
*-secret.yaml
|
|
*-credentials.yaml
|
|
!*-template.yaml
|
|
!*-example.yaml
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Go
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
go.work
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Certificates
|
|
*.crt
|
|
*.cert
|
|
*.cer
|
|
*.p7b
|
|
*.p7c
|
|
*.p7m
|
|
*.p7s
|
|
|
|
# Private keys
|
|
*.key
|
|
*.rsa
|
|
*.dsa
|
|
*.ec
|
|
*.pem
|
|
|
|
# Archive files that might contain secrets
|
|
*.zip
|
|
*.tar
|
|
*.tar.gz
|
|
*.tgz
|
|
*.rar
|
|
*.7z
|
|
|
|
# Configuration files with secrets
|
|
config/secrets.yaml
|
|
config/credentials.yaml
|
|
config/*.secret.*
|
|
|
|
# STIG and compliance reports (may contain sensitive info)
|
|
docs/compliance/ASSESSMENT_REPORTS/*.pdf
|
|
docs/compliance/ASSESSMENT_REPORTS/*.docx
|
|
docs/compliance/PENETRATION_TEST_REPORTS/*.pdf
|
|
docs/compliance/PENETRATION_TEST_REPORTS/*.docx
|