Sanitized for public release: - Removed all API keys, tokens, and secrets - Removed personal Discord IDs from hermes-openclaw.json - Updated git URLs to be generic placeholders - All sensitive data uses environment variable interpolation
39 lines
No EOL
418 B
Text
39 lines
No EOL
418 B
Text
# OpenBoatmobile .gitignore
|
|
|
|
# Terraform
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
*.tfvars
|
|
*.tfvars.json
|
|
.terraform.lock.hcl
|
|
|
|
# Secrets (NEVER COMMIT THESE)
|
|
*.env
|
|
*.pem
|
|
*.key
|
|
*secrets*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Local state (if using local backend)
|
|
terraform.tfstate
|
|
terraform.tfstate.backup
|
|
|
|
# Override files
|
|
override.tf
|
|
override.tf.json
|
|
*_override.tf
|
|
*_override.tf.json |