-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
109 lines (96 loc) · 1.35 KB
/
.gitignore
File metadata and controls
109 lines (96 loc) · 1.35 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Root dev/ folder only (not scripts/dev)
/dev/
folder/
.cursorrules
*.mdc
.cursor/
dist/
*.log
None/
# SSL/TLS Certificates and Keys (auto-generated and manual)
ssl_certs/
*.crt
*.key
*.pem
*.csr
*.p12
*.pfx
*.cer
*.der
# PM2 log output (development)
logs/
# Test artifacts and temporary files (root dev/ only)
/dev/*.txt
/dev/*.log
*.test.log
test_artifacts/
.pytest_cache/
.coverage
htmlcov/
# Environment variables
.env
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
env/
*.tar
storage/
project-site/dist/
*.cursor.tar
attached_assets/
chroma_db/
# uv
uv.lock
# Note: .python-version should be committed to ensure consistent Python versions
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
# OS
.DS_Store
Thumbs.db
# Node.js
node_modules/
client/node_modules/
client/dist/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.eslintcache
# Electron / desktop build output (root)
dist/
*.log
# Smart Contract Development
contracts/.env
contracts/artifacts/
contracts/cache/
contracts/typechain-types/
contracts/coverage/
# Security reports and scan results
*.sarif
*-report.json
bandit-report.json
semgrep-report.json
pip-audit-report.json
safety-report.json
npm-audit-report.json
eslint-security-report.json
ruff-security-report.json
zap-report.json
zap-report.html
security-summary.md
security-reports/