-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (46 loc) · 1.04 KB
/
Copy path.gitignore
File metadata and controls
57 lines (46 loc) · 1.04 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
# Node
node_modules/
.next/
out/
dist/
.turbo/
package-lock.json
# Python
__pycache__/
*.pyc
.venv/
.pytest_cache/
.mypy_cache/
# Local env
.env
# Editor
.vscode/
.codebuddy/
# CI / local run artifacts
_ci/
# Data directory (keep placeholder files)
data/**
!data/.gitkeep
!data/db/.gitkeep
!data/projects/.gitkeep
!data/cache/.gitkeep
#test
*_cookies.*
# NOTE: Do NOT ignore all JSON globally. This repo contains essential JSON
# config files (e.g. package.json, tsconfig.json) required for CI builds.
*.sqlite3
*.log
build_log.txt
CI_smoke_log/*
# Ignore backend build artifacts (PyInstaller / packaging outputs)
services/core/build/
services/core/build/**
# Generated artifacts (keep markdown docs, ignore generated json evidence)
_bmad-output/implementation-artifacts/*.json
# Generated benchmark reports (keep baseline.json)
benchmarks/results/*
!benchmarks/results/baseline.json
!benchmarks/results/.gitkeep
# Local human rubric scores (optional baseline median may be committed separately)
benchmarks/golden/*/scores/
services/benchmarks/results/*