-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (50 loc) · 1.3 KB
/
Copy path.gitignore
File metadata and controls
55 lines (50 loc) · 1.3 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
# Python
__pycache__/
*.py[cod]
.venv/
venv/
*.egg-info/
# Anchored to the repository root. A bare `build/` also matches
# src/nullius/build/, which silently excluded that package from git and
# from the wheel until CI could not import it.
/build/
/dist/
.mypy_cache/
.ruff_cache/
.pytest_cache/
.coverage
coverage.xml
htmlcov/
# Nullius runtime state — provenance lives in the ledger, not in git.
# Note: git treats '#' as a comment only at the start of a line, so these
# patterns carry no trailing annotations. They previously did, which made each
# one a literal path with trailing spaces that matched nothing at all.
# content-addressed artifact store
objects/
# experiment working directories
runs/
*.sqlite
*.sqlite-journal
*.sqlite-wal
*.sqlite-shm
.nullius/
# scratch for `nullius economy measure`; the lock file it writes is committed
.nullius-measure/
# generated pages: `nullius report build` and `nullius station build` write here,
# and CI uploads them as artifacts. The paper is committed because the README
# links it; these are rebuilt from the same record on every push.
site/
# Datasets are vendored deliberately and by hash; nothing lands here by accident
data/**
!data/.gitkeep
!data/**/*.manifest.json
# Secrets
.env
.env.*
!.env.example
# Editors / OS
.vscode/
.idea/
.DS_Store
Thumbs.db
.nullius-round/