Files
Sankofa/.gitignore
defiQUG fe0365757a Update documentation structure and enhance .gitignore
- Added generated index files and report directories to .gitignore to prevent unnecessary tracking of transient files.
- Updated README links to reflect new documentation paths for better navigation.
- Improved documentation organization by ensuring all links point to the correct locations, enhancing user experience and accessibility.
2025-12-12 21:18:55 -08:00

174 lines
1.8 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
# Generated index files (can be regenerated)
docs/MARKDOWN_REFERENCE.json
docs/MARKDOWN_INDEX.json
# Report files (generated/transient)
docs/reports/
# Plan files (planning documents)
docs/plans/
# 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