-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
116 lines (98 loc) · 3.15 KB
/
.gitignore
File metadata and controls
116 lines (98 loc) · 3.15 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
# Node modules
node_modules/
# ============================================================
# Landing Pages - GitHub Pages Deployment
# ============================================================
# docs/ folder contains landing pages for GitHub Pages
# Note: docs/ is NOT gitignored - it's deployed to GitHub Pages
# Environment variables
.env
.env.local
# IDE and editor files
.vscode/*
!.vscode/settings.json
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# ============================================================
# JobOps Output Directories - Refined Patterns (v1.1.1)
# ============================================================
# OutputResumes/ - Preserve structure, ignore user-generated outputs
OutputResumes/*
!OutputResumes/.gitkeep
!OutputResumes/README.md
!OutputResumes/.example/
# Ignore all timestamp-based assessment folders (YYYY-MM-DD_HHMMSS_*)
OutputResumes/20*
# ResumeSourceFolder/ - User's personal career inventory (gitignored)
ResumeSourceFolder/*
!ResumeSourceFolder/.gitkeep
!ResumeSourceFolder/README.md
!ResumeSourceFolder/.example/
# SourceMaterial/ - Ignore all files (analysis docs, personal artifacts)
SourceMaterial/*
!SourceMaterial/.gitkeep
!SourceMaterial/README.md
# Job_Postings/ - Track job postings, ignore automated search results
# Ignore automated job search results
Job_Postings/SearchResults_*
# Briefing_Notes/ - Preserve structure, ignore user-generated briefings
Briefing_Notes/*
!Briefing_Notes/.gitkeep
!Briefing_Notes/README.md
!Briefing_Notes/.example/
# Ignore all timestamp-based briefing folders
Briefing_Notes/20*
# Intelligence_Reports/ - Preserve structure, ignore user OSINT reports
Intelligence_Reports/*
!Intelligence_Reports/.gitkeep
!Intelligence_Reports/README.md
!Intelligence_Reports/.example/
# Ignore all timestamp-based intelligence folders
Intelligence_Reports/20*
# Scoring_Rubrics/ - KEEP rubrics (they're reusable across candidates)
# Rubrics are valuable artifacts that should be committed
!Scoring_Rubrics/
!Scoring_Rubrics/*.md
# ============================================================
# Document Conversion Outputs
# ============================================================
# Ignore converted Word documents (keep markdown source only)
*.docx
# ============================================================
# Logs and Temporary Files
# ============================================================
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Temporary files
*.tmp
*.temp
.cache/
# ============================================================
# Notes for Contributors
# ============================================================
#
# What TO commit:
# - Templates (.template.md files)
# - Examples (files in .example/ directories)
# - Curated example job postings (Example_*.md)
# - Scoring rubrics (reusable assessment criteria)
# - Documentation and guides
# - System configuration files
#
# What NOT to commit:
# - Personal resume source materials
# - User-generated assessments (timestamp folders)
# - Personal job postings and search results
# - Generated briefing notes and intelligence reports
# - Converted Word documents (.docx)
#
# See CONTRIBUTING.md for detailed guidelines
#