-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
103 lines (92 loc) · 1.31 KB
/
.gitignore
File metadata and controls
103 lines (92 loc) · 1.31 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
# Frontend
frontend/node_modules/
frontend/dist/
frontend/.vite/
frontend/coverage/
frontend/*.local
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
.bash_logout
.bashrc
.profile
# Obsolete
.release-version
MANIFEST
verify_imports.py
verify_proxy.py
GITHUB_DESCRIPTION.md
wiki/
# Application
.env
backend/data/*.db
backend/data/*.db-*
backend/data/ca/*
!backend/data/ca/.gitkeep
backend/data/certs/*
!backend/data/certs/.gitkeep
backend/data/crl/*
!backend/data/crl/.gitkeep
backend/data/private/*
!backend/data/private/.gitkeep
backend/data/scep/*
!backend/data/scep/.gitkeep
backend/data/backups/*
!backend/data/backups/.gitkeep
backend/data/*.pem
*.crt
*.key
*.csr
*.p12
*.pfx
# Build artifacts
*.deb
*.rpm
*.tar.gz
*.zip
dist/
build/
*.egg-info/
# Debian packaging build
packaging/debian/ucm/
packaging/debian/.debhelper/
packaging/debian/debhelper-build-stamp
packaging/debian/files
packaging/debian/*.substvars
packaging/debian/*.debhelper.log
# RPM packaging build
packaging/rpm/BUILD/
packaging/rpm/RPMS/
packaging/rpm/SRPMS/
packaging/rpm/BUILDROOT/
# Logs
*.log
logs/
# Backup files
*.bak
*.backup
*.old
*~
# Test files (root level only, not in tests/)
/test_*.py
/migrate_*.py
data/
!frontend/src/data/
CLAUDE.md
backend/static/