-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (50 loc) · 1.17 KB
/
Copy path.gitignore
File metadata and controls
61 lines (50 loc) · 1.17 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
# Jekyll build output
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
# Dependencies
Gemfile.lock
.bundle/
/vendor/
node_modules/
package-lock.json
# Docker
.docker/
# Notebooks
.ipynb_checkpoints/
# macOS
.DS_Store
**/.DS_Store
# IDEs
.vscode/
.idea/
# Playwright CLI local state
.playwright-cli/
# Agent instructions (personal agent state and agent contracts stay local).
# Keep these in _config.yml `exclude` too — they remain on disk, so a local
# build would otherwise copy them into _site/ and publish them.
.claude/
CLAUDE.md
AGENTS.md
# Python
scripts/__pycache__/
**/__pycache__/
*.pyc
.venv/
# Secrets. The metrics scripts read SERPAPI_KEY, SCHOLAR_AUTHOR_ID, and
# GOATCOUNTER_API_TOKEN from the environment; a local .env is the obvious place
# to stash them, and committing one would leak a live token.
.env
.env.*
# Local design artifacts
design-artifacts/
# Generated CV artifacts. main.tex is produced from _data/cv.yml by
# scripts/render_cv_tex.py at build time and compiled to PDF; neither is a
# source file. Also excluded in _config.yml so a stray local copy cannot be
# published as huguryildiz.com/main.tex.
/main.tex
/main.pdf
/main.aux
/main.log
/main.out