Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 5s
CI Pipeline / Clippy Lints (push) Successful in 51s
CI Pipeline / Rust Unit Tests (push) Failing after 1m31s
CI Pipeline / Security Audit (push) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 14s
CI Pipeline / Build .deb & Release (push) Has been skipped
- Remove all cert files from git tracking (git rm --cached) - crates/pm-agent-client/certs/client.key (private key) - crates/pm-agent-client/certs/client.crt (public cert) - crates/pm-agent-client/certs/ca.crt (public cert) - Add .gitignore patterns for *.key, *.key.pem, certs/*.crt, certs/*.pem - Update pm-agent-client doc examples to use std::fs::read() instead of include_bytes! - Add gitleaks secret scanning job to CI workflow - Update security-review.md with critical finding for Issue #12 - Add README.md to crates/pm-agent-client/certs/ explaining runtime cert generation Private keys were dev/test only - no production key rotation needed. Git history purge with filter-repo will follow after PR merge. Co-authored-by: Draco Lunaris <331325+Draco-Lunaris@users.noreply.github.com>
37 lines
500 B
Plaintext
37 lines
500 B
Plaintext
# Agent Zero project data
|
|
.a0proj/
|
|
|
|
# Python environments & cache
|
|
venv/**
|
|
**/__pycache__/**
|
|
|
|
# Node.js dependencies
|
|
**/node_modules/**
|
|
**/.npm/**
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.bak.*
|
|
|
|
# Rust build artifacts
|
|
/target
|
|
|
|
# Frontend dependencies
|
|
frontend/node_modules
|
|
frontend/dist
|
|
|
|
# Package build artifacts
|
|
*.deb
|
|
package-build/
|
|
|
|
# Private key material - NEVER commit
|
|
*.key
|
|
*.key.pem
|
|
crates/pm-agent-client/certs/*.crt
|
|
crates/pm-agent-client/certs/*.key
|
|
crates/pm-agent-client/certs/*.pem
|