-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·50 lines (43 loc) · 1.84 KB
/
Copy path.gitignore
File metadata and controls
executable file
·50 lines (43 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# PC2E Agent Governance Framework — .gitignore
# Files in this repository are public governance documentation.
# This file excludes internal operational artifacts and secrets.
# ─── Secrets ──────────────────────────────────────────────────────────────────
.env
.env.*
*.pem
*.key
*.cert
# ─── Internal operational artifacts (NAS/instance-specific) ──────────────────
# These are project-instance files — not part of the governance standard itself
sync-to-mac.sh
SYSTEM_LOG.md
SYSTEM_LOG_ARCHIVE.md
# ─── Superseded internal audit artifacts ──────────────────────────────────────
FULL_AUDIT.md
SECURITY_AUDIT.md
SECURITY.md
AUDIT_REPORT.md
MIGRATION_STATUS.md
VALIDATION_REPORT.md
# ─── Temporary and editor files ───────────────────────────────────────────────
*.tmp
*.temp
*_backup.*
*_old.*
*.swp
*.swo
.DS_Store
Thumbs.db
# ─── Logs ─────────────────────────────────────────────────────────────────────
logs/
*.log
# ─── Dependency and build artifacts ───────────────────────────────────────────
node_modules/
venv/
.venv/
__pycache__/
*.pyc
.cache/
# ─── IDE settings ─────────────────────────────────────────────────────────────
.vscode/
.idea/