/ .gitignore
.gitignore
1 # Logs 2 *.log 3 npm-debug.log* 4 yarn-debug.log* 5 yarn-error.log* 6 lerna-debug.log* 7 8 # Runtime data 9 pids 10 *.pid 11 *.seed 12 *.pid.lock 13 14 # Directory for instrumented libs generated by jscoverage/JSCover 15 lib-cov 16 17 # Coverage directory used by tools like istanbul 18 coverage 19 *.lcov 20 21 # nyc test coverage 22 .nyc_output 23 24 # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 25 .grunt 26 27 # Bower dependency directory (https://bower.io/) 28 bower_components 29 30 # node-waf configuration 31 .lock-wscript 32 33 # Compiled binary addons (https://nodejs.org/api/addons.html) 34 build/Release 35 36 # Dependency directories 37 node_modules/ 38 jspm_packages/ 39 40 # TypeScript v1 declaration files 41 typings/ 42 43 # TypeScript cache 44 *.tsbuildinfo 45 46 # Optional npm cache directory 47 .npm 48 49 # Optional eslint cache 50 .eslintcache 51 52 # Microbundle cache 53 .rpt2_cache/ 54 .rts2_cache_cjs/ 55 .rts2_cache_es/ 56 .rts2_cache_umd/ 57 58 # Optional REPL history 59 .node_repl_history 60 61 # Output of 'npm pack' 62 *.tgz 63 64 # Yarn Integrity file 65 .yarn-integrity 66 67 # dotenv environment variables file 68 .env 69 .env.test 70 .env.local 71 72 # parcel-bundler cache (https://parceljs.org/) 73 .cache 74 .parcel-cache 75 76 # Next.js build output 77 .next 78 79 # Nuxt.js build / generate output 80 .nuxt 81 dist 82 83 # Gatsby files 84 .cache/ 85 # Comment in the public line in if your project uses Gatsby and *not* Next.js 86 # https://nextjs.org/blog/next-9-1#public-directory-support 87 # public 88 89 # vuepress build output 90 .vuepress/dist 91 92 # Serverless directories 93 .serverless/ 94 95 # FuseBox cache 96 .fusebox/ 97 98 # DynamoDB Local files 99 .dynamodb/ 100 101 # TernJS port file 102 .tern-port 103 104 # Built plugin files 105 main.js 106 *.zip 107 styles.css 108 109 # macOS 110 .DS_Store 111 112 # Obsidian workspace files 113 .obsidian/workspace.json 114 .obsidian/workspace-mobile.json 115 116 # Temporary files 117 *.tmp 118 *.temp 119 120 # Python virtual environments 121 src/features/realtime-transcription/scripts/venv/ 122 *.pyc 123 __pycache__/ 124 125 # Sensitive data files 126 data.json 127 copilot-transcription-*.md 128 129 # GitHub sharing viewer bundle (build artifacts) 130 viewer-bundle/ 131 src/features/web-link-analyzer/scripts/venv/ 132 logs/ 133 134 # Runtime vault state 135 vault-state.json