/ .gitignore
.gitignore
 1  # [[file:CONTRIBUTING.org::*Misc][Misc:2]]
 2  #====================================================
 3  #              🏗 BUILD/TEST OUTPUTS 🏗
 4  #====================================================
 5  # .dir-locals.el
 6  **/.pio/
 7  **/debug/
 8  **/result
 9  **/zig-out
10  **/target/
11  **/dist
12  assets/static/tui.js
13  assets/static/index.html
14  assets/static/tui_bg.wasm
15  .shellspec
16  **/node_modules
17  tests/env_spec.sh
18  firmware/tests/__pycache__
19  learning/assembly/build/
20  config/data.sqld
21  
22  #====================================================
23  #                 CACHES/LOGS
24  #====================================================
25  logs # MSVC Windows builds of rustc generate these, which store debugging information
26  *.pdb
27  .cache
28  .devenv*
29  .direnv
30  *.sqlite
31  *.sqlite-*
32  **/*.qcow2
33  **/.direnv/
34  **/*.rs.bk
35  .open-webui
36  **/.git-hooks
37  **/.zig-cache
38  devenv.local.nix
39  devenv.local.yaml
40  local.properties
41  .webui_secret_key
42  .pre-commit-config.yaml
43  
44  #====================================================
45  #                  MISCELLANEOUS
46  #====================================================
47  .c9
48  *.pem
49  *tmp*
50  .idea/
51  .project
52  *.launch
53  .vscode/*
54  .DS_Store
55  .settings
56  .classpath
57  !.vscode/settings.json
58  !.vscode/extensions.json
59  !.vscode/settings-example.json
60  
61  #====================================================
62  #                  DEPENDENCIES
63  #====================================================
64  /.pnp
65  .pnp.js
66  
67  opencode.json
68  /.codex/config.toml
69  /compile_commands.json
70  # Misc:2 ends here
71  /tests/__pycache__