178 lines
2.5 KiB
Plaintext
178 lines
2.5 KiB
Plaintext
# Dependencies
|
|
/node_modules
|
|
**/node_modules
|
|
jspm_packages/
|
|
web_modules/
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
.pnp.*
|
|
|
|
# Build artifacts
|
|
/dist
|
|
/out
|
|
/build
|
|
/release
|
|
build/Release
|
|
.next
|
|
.nuxt
|
|
.vuepress/dist
|
|
**/.vitepress/dist
|
|
.docusaurus
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage
|
|
coverage
|
|
*.lcov
|
|
.nyc_output
|
|
|
|
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# Bower dependency directory (https://bower.io/)
|
|
bower_components
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
.npmrc
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional stylelint cache
|
|
.stylelintcache
|
|
|
|
# Microbundle cache
|
|
.rpt2_cache/
|
|
.rts2_cache_cjs/
|
|
.rts2_cache_es/
|
|
.rts2_cache_umd/
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variable files
|
|
.env
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.local
|
|
.env.ci
|
|
infrastructure/.env.ci
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# vuepress v2.x temp and cache directory
|
|
.temp
|
|
.cache
|
|
|
|
# vitepress cache directory
|
|
**/.vitepress/cache
|
|
|
|
# Serverless directories
|
|
.serverless/
|
|
|
|
# FuseBox cache
|
|
.fusebox/
|
|
|
|
# DynamoDB Local files
|
|
.dynamodb/
|
|
|
|
# TernJS port file
|
|
.tern-port
|
|
|
|
# Stores VSCode versions used for testing VSCode extensions
|
|
.vscode-test
|
|
|
|
# ---> Go
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# ---> Rust
|
|
# Generated by Cargo
|
|
debug/
|
|
target/
|
|
|
|
# These are backup files generated by rustfmt
|
|
**/*.rs.bk
|
|
|
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
*.pdb
|
|
|
|
# RustRover IDE specific (from JetBrains.gitignore)
|
|
#.idea/ # Uncomment if using RustRover and want to ignore the entire folder
|
|
|
|
# ---> Vue specific (potentially covered above)
|
|
docs/_book
|
|
test/
|
|
|
|
# IDE / Editor specific (additional)
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# OS-specific (additional)
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker / Podman (additional)
|
|
*.container
|
|
*.containerfile
|
|
.dockerignore
|
|
.podmanignore
|
|
|
|
# Misc (additional)
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
.pnpm-store/
|
|
.terraform/
|
|
.gocache/
|
|
.gopath/
|
|
backend/functions/llm-service/llm-service
|