-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
118 lines (88 loc) · 1.89 KB
/
.gitignore
File metadata and controls
118 lines (88 loc) · 1.89 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
# scripts dir
/image_scripts/
# env files
.env
.env.local
!.env.example
# ansible vualt files
**/.vault_password_file
# volume data dirs
/volumes/gateway4/data/*
!/volumes/gateway4/data/.gitkeep
/volumes/gateway4/scripts/*
!/volumes/gateway4/scripts/.gitkeep
/volumes/gateway4/ssl/*
!/volumes/gateway4/ssl/.gitkeep
/volumes/gateway4/terraform/*
!/volumes/gateway4/terraform/.gitkeep
# gw4 playbooks - .gitkeep tracked, example playbooks tracked
# user-added playbooks should be added to .gitignore manually if needed
/volumes/platform/adapters/*
!/volumes/platform/adapters/.gitkeep
/volumes/platform/logs/*
!/volumes/platform/logs/.gitkeep
/volumes/platform/ssl/*
!/volumes/platform/ssl/.gitkeep
/volumes/gateway5/data/*
!/volumes/gateway5/data/.gitkeep
/volumes/gateway5/scripts/*
!/volumes/gateway5/scripts/.gitkeep
/volumes/gateway5/certificates/*
!/volumes/gateway5/certificates/.gitkeep
/volumes/ldap/*
!/volumes/ldap/.gitkeep
!/volumes/ldap/openldap.ldif
/volumes/mcp/logs/*
!/volumes/mcp/logs/.gitkeep
# openbao - track config, ignore init keys
/volumes/openbao/init-keys.json
# vault token file (auto-generated, contains sensitive token)
/volumes/platform/vault/
# mongo data
/dependencies/mongodb-data/*
!/dependencies/mongodb-data/.gitkeep
# os generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ide things
.vscode/
.idea/
*.swp
*.swo
# claude code things
.claude/
CLAUDE.md
AGENTS.md
# claude desktop config (contains credentials)
docs/claude_desktop_config.json
!docs/claude_desktop_config.example.json
# temp files
*.tmp
*.temp
# ssl certificates / keys (global fallback)
*.pem
*.key
*.crt
*.cert
# db files
*.db
*.sqlite
*.sqlite3
# backup files
*.bak
*.backup
*.orig
# app logs
*.log
# container override files
docker-compose.override.yml
docker-compose.override.yaml
# node modules
node_modules/
# external reference projects
docker-compose-dev-lab/