-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
127 lines (107 loc) · 1.46 KB
/
.gitignore
File metadata and controls
127 lines (107 loc) · 1.46 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# MarchProxy .gitignore
# Project planning files (git ignored)
.REQUIREMENTS
.PLAN*
.TODO
# Version file is NOT ignored - should be tracked
# .version - This file should be committed to track version
# Compiled binaries
/manager/apps/marchproxy/__pycache__/
/manager/apps/__pycache__/
/proxy/marchproxy
/proxy/marchproxy-dev
/proxy/tmp/
*.o
*.so
*.dylib
*.exe
# Development files
.DS_Store
.vscode/settings.json
.vscode/launch.json
*.swp
*.swo
*~
# Logs
*.log
/manager/logs/
/proxy/logs/
# Database files
*.db
*.sqlite
*.sqlite3
# Environment files
.env
.env.local
.env.production
.env.development
# Certificates and keys
*.pem
*.key
*.crt
*.p12
*.pfx
/docker/dev/certs/
/manager/certs/
/proxy/certs/
# Configuration files with secrets
config.yaml
config.json
password.txt
# Docker volumes and data
postgres_data/
manager_logs/
proxy_logs/
syslog_logs/
# Go specific
/proxy/vendor/
/proxy/go.sum
# Python specific
*.pyc
*.pyo
*.pyd
__pycache__/
*.egg-info/
dist/
build/
.pytest_cache/
.coverage
htmlcov/
.tox/
venv/
env/
# eBPF compiled programs
/proxy/ebpf/build/*.o
/proxy/ebpf/build/*.ll
# IDE files
.idea/
*.iml
.vscode/
!.vscode/extensions.json
# OS generated files
Thumbs.db
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
# Temporary files
*.tmp
*.temp
temp/
tmp/
# License keys (security)
license.key
*.lic
# Development certificates
dev-cert.*
localhost.*
# Backup files
*.backup
*.bak
*.orig
# Testing artifacts
coverage.out
test-results/
.nyc_output/