-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
81 lines (72 loc) · 1.59 KB
/
.gitignore
File metadata and controls
81 lines (72 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Python cache
__pycache__/
*.py[cod]
*.so
# Test/cache artifacts
.pytest_cache/
.coverage
htmlcov/
coverage.xml
# Keep the curated CI test subset and shared cleanup hook tracked.
aegisgate/tests/*
!aegisgate/tests/conftest.py
!aegisgate/tests/test_gateway_boundary_access.py
!aegisgate/tests/test_openai_request_mapping.py
!aegisgate/tests/test_passthrough_filter_mode.py
!aegisgate/tests/test_request_redaction_routes.py
!aegisgate/tests/test_response_sanitization_routes.py
!aegisgate/tests/test_sanitize_helpers.py
!aegisgate/tests/test_streaming_router.py
!aegisgate/tests/test_forwarding_kernel_phase0_guardrails.py
!aegisgate/tests/test_hot_reload_unit.py
!aegisgate/tests/test_injection_detector.py
!aegisgate/tests/test_sqlite_mapping_prune.py
# Virtual env
.venv/
venv/
env/
# Local runtime data
logs/*
!logs/.gitkeep
*.db
*.db-shm
*.db-wal
*.log
使用教程.log
docker-compose-me.yml
# Caddy config (local per-deployment)
Caddyfile
# Encryption keys and token mappings (NEVER commit)
config/aegis_fernet.key
config/aegis_gateway.key
config/gw_tokens.json
config/.admin_initialized
config/stats.json
*.key
# Local config secrets
.env
.env.*
!config/.env.example
# Auto-generated IDE/agent files
AGENTS.md
.claude/
.codex/
.codex
*.egg-info/
build/
dist/
# Local editor/OS files
.DS_Store
Thumbs.db
.idea/
.vscode/
.worktrees/
# Do not publish local docs directory (lowercase or uppercase)
docs/
DOC/
# Local/internal reports and checklists (do not upload)
PRODUCTION_READINESS_TEST_REPORT.md
OPEN_SOURCE_CHECKLIST.md
PR_DESCRIPTION_2026-02-26-security-hardening.md
.github/pull_request_template.md
.planning/