-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathrepomix.config.json
More file actions
44 lines (44 loc) · 897 Bytes
/
repomix.config.json
File metadata and controls
44 lines (44 loc) · 897 Bytes
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
{
"output": {
"filePath": "repomix-output.xml",
"style": "xml",
"headerText": "Makeability Lab Website Codebase (Django/Bootstrap)"
},
"include": [
"**/*.py",
"**/*.js",
"**/*.html",
"**/*.css",
"**/*.scss",
"Dockerfile",
"docker-compose*.yml",
"requirements.txt"
],
"ignore": {
"useGitignore": true,
"customPatterns": [
"**/node_modules/**",
"**/venv/**",
"**/__pycache__/**",
"**/migrations/**",
"**/*.min.js",
"**/*.min.css",
"**/*.lock",
"**/*.sqlite3",
"db/**",
"media/**",
"design/**",
"docs/**",
"static/admin/**",
"**/vendor/**",
"**/bootstrap/**",
"**/jquery/**",
".devcontainer/**",
".idea/**",
".vscode/**",
"sortedm2m_filter_horizontal_widget/**",
"auto-deploy/**",
"report.html"
]
}
}