diff options
| author | Dhravya Shah <[email protected]> | 2025-01-20 17:49:19 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-01-20 17:50:45 -0700 |
| commit | 47904011de646b92b1f3774f9a30bcfa118c5dc4 (patch) | |
| tree | ab0e5e79c4ad5465ceeedc9b4015be2d9d01be45 /.gitignore | |
| parent | Merge pull request #295 from supermemoryai/extension/duplicate-save-fix (diff) | |
| download | supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.tar.xz supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.zip | |
Supermemory v2 Release 🚀
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 45 |
1 files changed, 33 insertions, 12 deletions
@@ -1,13 +1,9 @@ -.vars -.*.vars -.wrangler -.million -yarn.lock -package-lock.json +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +bun.lockb # Dependencies -node_modules -.pnp +node_modules/ +/.pnp .pnp.js # Local env files @@ -16,9 +12,10 @@ node_modules .env.development.local .env.test.local .env.production.local +.env*.local # Testing -coverage +/coverage # Turbo .turbo @@ -27,11 +24,10 @@ coverage .vercel # Build Outputs -.next/ +/.next out/ build -dist - +/dist # Debug npm-debug.log* @@ -41,3 +37,28 @@ yarn-error.log* # Misc .DS_Store *.pem + +# IDE specific files +.idea/ +.vscode/ +*.swp +*.swo + +# Sensitive data +*.key +**/credentials.* +**/secrets.* +config.private.* + +# Cache +.cache/ +.npm +.eslintcache + +# Local database files +*.sqlite +*.db + +# Personal notes/todos +TODO.md +NOTES.md |