Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 4s
CI Pipeline / Clippy Lints (push) Successful in 51s
CI Pipeline / Rust Unit Tests (push) Failing after 1m20s
CI Pipeline / Security Audit (push) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 15s
CI Pipeline / Build .deb & Release (push) Has been skipped
- debian/control: add Pre-Depends and Depends on postgresql-16, argon2 - debian/postinst: idempotent automation for PostgreSQL setup, DB/user creation, migration tracking, admin password generation, config write, and service enable/start - Dockerfile: multi-stage build (Rust + frontend + slim runtime) - docker/entrypoint.sh: first-run DB wait, migrations, admin password - docker-compose.yml: split db/app architecture with healthcheck - .env.example: template for DB_PASSWORD and TAG - .dockerignore: exclude build artifacts from Docker context - .github/workflows/ci.yml: add Docker job for multi-arch (amd64/arm64) GHCR push on tag releases with layer caching - .gitignore: add .env entry
40 lines
527 B
Plaintext
40 lines
527 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/
|
|
|
|
# Docker environment
|
|
.env
|
|
|
|
# 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
|