summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorinfo@mode42.com <info@mode42.com>2026-08-07 18:09:58 +0000
committerinfo@mode42.com <info@mode42.com>2026-08-07 18:09:58 +0000
commita7362dc14bca1233eb34b41aefebe9cfb22684ac (patch)
treef727c87f92aeb503038deeecc24d3e074dc0197c /.gitignore
Initial pushmain
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore66
1 files changed, 66 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4063ddf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,66 @@
+# Local / secrets (never commit live values)
+local/
+!local/README.md
+
+# Editor / OS
+*~
+*.swp
+*.swo
+.DS_Store
+.idea/
+.vscode/
+*.code-workspace
+
+# Build / firmware artifacts
+*.o
+*.elf
+*.bin
+*.hex
+*.map
+*.uf2
+*.dis
+build/
+firmware/**/build*/
+firmware/**/build-*/
+dist/
+out/
+.cache/
+
+# KiCad
+*-backups/
+*.kicad_prl
+fp-info-cache
+*-cache.lib
+*.bak
+\#auto_saved_files\#
+_autosave-*
+
+# Python / tooling
+__pycache__/
+*.pyc
+.venv/
+venv/
+
+# Logs
+*.log
+
+# KiCad / generator
+*.kicad_pro.lck
+**/__pycache__/
+hardware/kicad/t-modem/*.kicad_prl
+
+# KiCad local UI
+.history/
+~*.lck
+
+# Vault MASTER governance — never ship/commit to this slave
+AGENT-INDEX.md
+**/AGENT-INDEX.md
+.deps/
+
+# Pico out-of-tree builds
+firmware/**/build*/
+
+# Freerouting artifacts
+*.dsn
+*.ses
git clone -b <branch> https://cgit.mode42.com/<repo>.git
git clone -b <branch> git://cgit.mode42.com/<repo>.git

info@mode42.com