forked from OurHike/OurHike
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
30 lines (25 loc) · 1.28 KB
/
Copy path.gitignore
File metadata and controls
30 lines (25 loc) · 1.28 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
personal_reference/
# Machine-local Claude Code settings. The shared .claude/settings.json is
# tracked now - it registers the hook that sets up web session containers -
# so anything personal belongs in settings.local.json, the file Claude Code
# reserves for exactly that.
.claude/settings.local.json
# Coverage data, when pytest is run from the repo root rather than backend/
# (backend/.gitignore only covers the backend/ subtree).
.coverage
# Assembled GitHub Pages output (landing page + built app), built by CI.
_site/
# Node dependencies and tool caches, when npm or vitest is run from the repo
# root rather than client/ (client/.gitignore only covers the client/ subtree,
# the same way backend/.gitignore only covers its own - see .coverage above).
# A vitest run from the root put node_modules/.vite/ under version control
# once already.
node_modules/
# Python bytecode. .github/scripts/__pycache__/release_notes.cpython-311.pyc
# was tracked, so every run of that module under a different interpreter
# showed up as a modified file and rode along on the next commit - which has
# already cost one commit to undo. Nothing else in the repository ignored
# bytecode, because the three Python subtrees each ignore their own and this
# file was the only one outside them.
__pycache__/
*.py[cod]