/ .gitignore
.gitignore
 1  node_modules/
 2  .aider.chat.history.md
 3  .aider.tags.cache.v4/
 4  coverage/
 5  .c8_output/
 6  codacy-coverage-reporter.sh
 7  *.sh
 8  generated-types/
 9  .idea/
10  **/__pycache__/
11  
12  # Build artifacts
13  dist/
14  **/dist/
15  
16  # Databases
17  *.sqlite3
18  
19  # Environment files
20  .env
21  **/.env
22  
23  # OS files
24  .DS_Store
25  **/.DS_Store
26  
27  # Development files
28  .vite-port
29  **/.vite-port
30  
31  # Memory artifacts
32  memories/**/*.bin
33  memories/chroma.sqlite3
34  
35  # Codacy
36  .codacy/