-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (36 loc) · 755 Bytes
/
Copy path.gitignore
File metadata and controls
44 lines (36 loc) · 755 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
# Everything hidden is ignored, then re-included deliberately. This covers
# .env, .nix-venv, .tmp, .direnv and every tool cache and editor directory in
# one line, which is most of what the old list spelled out by hand.
**/.*
!.env.template
!.github
!.gitignore
!.gitmodules
!**/.gitkeep
# Claude Code: share project config, keep personal overrides out
!.claude
.claude/*
!.claude/CLAUDE.md
!.claude/settings.json
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
# Packaging
build/
dist/
*.egg-info/
venv/
# Test and coverage artefacts that are not hidden
htmlcov/
coverage.xml
*.log
# Generated, rebuilt by `make`
specs/openapi.patched.json
specs/websocket-channels.json
docs/reference/
site/
# Key material, never
*private_key.txt
node_modules/