-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
192 lines (171 loc) · 5.19 KB
/
Copy path.gitignore
File metadata and controls
192 lines (171 loc) · 5.19 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# =============================================================================
# BESSAI Edge Gateway — .gitignore
# =============================================================================
# ---------------------------------------------------------------------------
# Python
# ---------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
.installed.cfg
lib/
lib64/
# Virtual environments
.venv/
venv/
ENV/
env/
env.bak/
venv.bak/
# Pytest / coverage
.pytest_cache/
.cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
# MyPy
.mypy_cache/
.dmypy.json
dmypy.json
# Ruff / linters
.ruff_cache/
# ---------------------------------------------------------------------------
# Docker & environment files
# ---------------------------------------------------------------------------
.env
.env.*
!.env.example
*.log
logs/
docker-compose.override.yml
# ---------------------------------------------------------------------------
# Terraform
# ---------------------------------------------------------------------------
**/.terraform/*
*.tfstate
*.tfstate.*
*.tfvars
!*.tfvars.example
crash.log
crash.*.log
override.tf
override.tf.json
*_override.tf
*_override.tf.json
.terraformrc
terraform.rc
# ---------------------------------------------------------------------------
# IDEs — VSCode
# ---------------------------------------------------------------------------
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json.example
*.code-workspace
# IDEs — JetBrains (PyCharm, IntelliJ, etc.)
.idea/
*.iml
*.iws
*.ipr
out/
.idea_modules/
# ---------------------------------------------------------------------------
# Local data files
# ---------------------------------------------------------------------------
*.db
*.sqlite3
*.log
*.tmp
*.bak
*.swp
*~
# ---------------------------------------------------------------------------
# OS artifacts
# ---------------------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# ---------------------------------------------------------------------------
# IEC 62443 GAP-003: OT PKI — private keys MUST NOT be committed
# Run: bash infrastructure/certs/gen_certs.sh to regenerate locally
# ---------------------------------------------------------------------------
infrastructure/certs/*.key
infrastructure/certs/*.pem
infrastructure/certs/*.srl
# CA key is especially sensitive
infrastructure/certs/ca.key
# Public certs are safe to commit (no secret material)
# infrastructure/certs/*.crt ← intentionally NOT ignored
# Kubernetes secrets — MUST NOT be committed (Agente del Orden)
infrastructure/k8s/secrets.yaml
infrastructure/k8s/secrets.yaml.template
infrastructure/k8s/*-secret*.yaml
# ---------------------------------------------------------------------------
# BESS Solutions proprietary files — MUST NOT be in the public repo
# PI Protection Policy v1.1 — 2026-02-28
# ---------------------------------------------------------------------------
# Website (separate private repo: bess-solutions/bess-website)
landing/
website/
# Dashboard + operational data (separate private repo)
dashboard/
# Internal-only documentation
docs/MANUAL_ACCIONES_RODRIGO.md
docs/PLAN_INMORTALIDAD.md
docs/MODULOS_Y_DATOS_SIMULADOS.md
docs/PENDIENTES.md
# ── Trained AI Models (PROPRIETARY — move to bess-solutions/bessai-core) ──
# ONNX models contain trained weights and are reverse-engineerable.
# Production models are installed from private PyPI: pip install bessai-models
models/*.onnx
models/*.ort
models/*.pt
models/*.pkl
models/*.joblib
# training_summary.json exposes full feature architecture per node — keep private
models/training_summary.json
# ── Market data (reveals commercial strategy) ──
# These files are regenerated by scripts/fetch_tariffs.py — do NOT commit.
src/analytics/tariffs/*.json
!src/analytics/tariffs/chile_generic.json
src/analytics/tariffs/*.csv
# ── Federated Learning infrastructure (proprietary architecture) ──
# FL implementation details are a core trade secret of BESSAI.
# These are maintained in the private repo: bess-solutions/bessai-core
# src/interfaces/fl_client.py ← tracked separately via private subtree
# src/interfaces/fl_server.py
# ---------------------------------------------------------------------------
# Node / frontend (not part of backend package)
# ---------------------------------------------------------------------------
node_modules/
.vite/
# ---------------------------------------------------------------------------
# Analysis output files (pyright, bandit, mypy, pytest)
# ---------------------------------------------------------------------------
pyright_*.txt
bandit_*.txt
mypy_*.txt
pytest_*.txt
*_out.txt
*_current.txt
*_result.txt
# ---------------------------------------------------------------------------
# Auto-generated reports (use: make consolidate to regenerate)
# ---------------------------------------------------------------------------
CONSOLIDATION.md
# ---------------------------------------------------------------------------
# Nested local repositories
# ---------------------------------------------------------------------------
bessai-web/