mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
497 lines
6.1 KiB
Plaintext
497 lines
6.1 KiB
Plaintext
# Trackeep .gitignore
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.prod
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tgz
|
|
*.tar.gz
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
.playwright
|
|
.playwright-cli
|
|
.desloppify
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
jspm_packages/
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# 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 variables file
|
|
.env
|
|
.env.test
|
|
.env.production
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# Next.js build output
|
|
.next
|
|
|
|
# Nuxt.js build / generate output
|
|
.nuxt
|
|
dist
|
|
|
|
# Gatsby files
|
|
.cache/
|
|
/public
|
|
|
|
# Storybook build outputs
|
|
.out
|
|
.storybook-out
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.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
|
|
|
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
jspm_packages/
|
|
|
|
# TypeScript v1 declaration files
|
|
typings/
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# 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 variables file
|
|
.env
|
|
.env.test
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# Next.js build output
|
|
.next
|
|
|
|
# Nuxt.js build / generate output
|
|
.nuxt
|
|
dist
|
|
|
|
# Gatsby files
|
|
.cache/
|
|
/public
|
|
|
|
# Storybook build outputs
|
|
.out
|
|
.storybook-out
|
|
|
|
# Rollup.js default build output
|
|
dist/
|
|
|
|
# Uncomment this if you have a Yarn workspace
|
|
# yarn-workspace
|
|
|
|
# Go specific
|
|
# 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
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Backend specific
|
|
backend/main
|
|
backend/trackeep
|
|
backend/*.exe
|
|
backend/*.dll
|
|
backend/*.so
|
|
backend/*.dylib
|
|
backend/*.test
|
|
backend/*.out
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
trackeep.db
|
|
data/
|
|
uploads/
|
|
backups/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# IDE specific files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Desktop app build artifacts
|
|
desktop/dist/
|
|
desktop/src-tauri/target/
|
|
|
|
# Lock files (keep package-lock.json but ignore yarn.lock if using npm)
|
|
# yarn.lock
|
|
|
|
# Local development
|
|
.local
|
|
local/
|
|
|
|
# Test files
|
|
test-results/
|
|
playwright-report/
|
|
test-results.xml
|
|
|
|
# Sentry
|
|
.sentryclirc
|
|
|
|
# Terraform
|
|
*.tfstate
|
|
*.tfstate.*
|
|
.terraform/
|
|
|
|
# Kubernetes
|
|
*.kubeconfig
|
|
|
|
# Helm
|
|
charts/*.tgz
|
|
|
|
# Monitoring and logs
|
|
logs/
|
|
*.log
|
|
monitoring/
|
|
|
|
# SSL certificates
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.csr
|
|
|
|
# Configuration overrides
|
|
config.override.yml
|
|
config.override.yaml
|
|
config.override.json
|
|
|
|
# User data
|
|
user-data/
|
|
user-content/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
cache/
|
|
|
|
# Build artifacts
|
|
artifacts/
|
|
bin/
|
|
|
|
# Generated documentation
|
|
docs/generated/
|
|
|
|
# Performance profiling
|
|
*.prof
|
|
*.pprof
|
|
|
|
# Local scripts
|
|
scripts/local-*
|
|
scripts/dev-*
|
|
|
|
# Development tools
|
|
.devcontainer/
|
|
|
|
# Local database seeds
|
|
seeds/local-*
|
|
|
|
# Environment specific
|
|
.env.local.*
|
|
.env.dev.*
|
|
.env.staging.*
|
|
.env.prod.*
|
|
|
|
# Backup and migration files
|
|
migrations/local-*
|
|
backups/local-*
|
|
|
|
# Local SSL certificates for development
|
|
ssl/
|
|
certs/
|
|
|
|
# Local Docker overrides
|
|
docker-compose.override.yml
|
|
docker-compose.local.yml
|
|
|
|
# Local testing
|
|
test/local-*
|
|
tests/local-*
|
|
|
|
# Local monitoring
|
|
monitoring/local-*
|
|
|
|
# Development databases
|
|
dev-db/
|
|
test-db/
|
|
|
|
# Local file storage
|
|
local-storage/
|
|
temp-storage/
|
|
|
|
# Generated files
|
|
generated/
|
|
auto-generated/
|
|
|
|
# IDE and editor files
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.vscode/settings.json
|
|
.vscode/launch.json
|
|
.vscode/extensions.json
|
|
.idea/
|
|
*.iml
|
|
|
|
# Mac OS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
Thumbs.db:encryptable
|
|
ehthumbs.db
|
|
ehthumbs_vista.db
|
|
*.stackdump
|
|
[Dd]esktop.ini
|
|
$RECYCLE.BIN/
|
|
*.cab
|
|
*.msi
|
|
*.msix
|
|
*.msm
|
|
*.msp
|
|
*.lnk
|
|
|
|
# Linux
|
|
*~
|
|
.fuse_hidden*
|
|
.directory
|
|
.Trash-*
|
|
.nfs*
|
|
|
|
# Package managers
|
|
package-lock.json (keep this for npm)
|
|
yarn.lock (remove if using npm)
|
|
pnpm-lock.yaml (keep if using pnpm)
|
|
|
|
# Local development files
|
|
dev/
|
|
.local/
|
|
local/
|
|
|
|
# Test outputs
|
|
coverage/
|
|
.nyc_output/
|
|
test-results/
|
|
junit.xml
|
|
|
|
# Build tools
|
|
.eslintcache
|
|
.stylelintcache
|
|
.postcssrc.cache
|
|
|
|
# Runtime
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
.env.test
|
|
|
|
# parcel-bundler cache
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# next.js build output
|
|
.next
|
|
|
|
# nuxt.js build output
|
|
.nuxt
|
|
dist
|
|
|
|
# vuepress build output
|
|
.vuepress/dist
|
|
|
|
# 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
|