-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (49 loc) · 1.63 KB
/
.gitignore
File metadata and controls
62 lines (49 loc) · 1.63 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
# ===================================================================
# CMMS-SCADA-Excel-DataProcessor - Git Ignore
# ===================================================================
# ===================================================================
# SENSITIVE & CORPORATE-SPECIFIC FILES
# ===================================================================
# Ignore the main configuration file by name, wherever it is.
# This file contains sensitive corporate data (URLs, system names, etc.).
Config.bas
# Ignore any file located in the 'config' directory.
# This provides a fallback to protect all files in this sensitive directory.
src/config/
# Explicitly re-include the template so it can be committed.
# This allows new users to have a starting point.
!src/config/*Template.bas
!src/config/*Example.bas
# Ignore any backup files.
*.bak
*.backup
*~
# ===================================================================
# BUILD & DEVELOPMENT ARTIFACTS
# ===================================================================
# Excel temporary files that are created when a workbook is open.
~$*.xlsm
~$*.xlsx
~$*.xls
*.tmp
# Log files generated by the application or other tools.
*.log
logs/
# Downloaded reports or data from the CMMS.
**/Downloads/
downloads/
# ===================================================================
# SYSTEM & IDE-SPECIFIC FILES
# ===================================================================
# Windows system files
Thumbs.db
Desktop.ini
# Visual Studio Code settings, except for recommended extensions.
.vscode/
!.vscode/extensions.json
# Other common IDE and editor files.
.idea/
*.swp
*.swo
*.suo
*.user