-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
79 lines (66 loc) · 1.6 KB
/
Copy path.gitignore
File metadata and controls
79 lines (66 loc) · 1.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Private workspace, never push to GitHub
.local/
# Internal sprint output (decision 5 of the plan)
python_demo/
# OMC/OMX state, plans, PRD, progress tracking (working directory only)
.omc/
.omx/
# macOS noise
.DS_Store
.AppleDouble
.LSOverride
._*
# Editor backups
*~
*.bak
*.swp
*.swo
*.orig
# Python caches (defense in depth even though no Python ships)
*.pyc
__pycache__/
.pytest_cache/
.mypy_cache/
.ruff_cache/
*.egg-info/
# Node (defense in depth)
node_modules/
# Environment and secrets (block real env files, allow template through)
.env
.env.*
anthropic.env
!.env.example
# 5G_O-RAN_SIM runtime trace logs (never committed)
5G_O-RAN_SIM/llm/mock_traces.jsonl
# 5G_O-RAN_SIM shared trace layer: runtime traces gitignored, committed examples (.example.jsonl) allowed
5G_O-RAN_SIM/shared_trace/*.jsonl
!5G_O-RAN_SIM/shared_trace/*.example.jsonl
# 5G_O-RAN_SIM bench runtime artifacts (per-run summary; gitignored)
5G_O-RAN_SIM/bench/last_run_summary.md
# PDF redistribution guard (NG2 from plan)
*.pdf
# Exception: scientifically authored draft papers belong in the repo
!draft_papers/*.pdf
# LaTeX build artifacts (only .tex, .bib, .pdf are tracked under draft_papers/)
draft_papers/*.aux
draft_papers/*.log
draft_papers/*.out
draft_papers/*.bbl
draft_papers/*.blg
draft_papers/*.toc
draft_papers/*.fls
draft_papers/*.fdb_latexmk
draft_papers/*.synctex.gz
# Archive formats (defense in depth)
*.tar
*.tar.gz
*.tgz
*.zip
*.7z
# IDE
.idea/
.vscode/
# Generated talk-track audio is published from docs/assets/; keep source-output copies local.
Demo Talk Track/*.mp3
# TypeScript incremental build artifacts
*.tsbuildinfo