- Import real data from PDF (35 Bambu Lab filaments) - Remove all Confluence integration and dependencies - Implement new V2 data structure with proper inventory tracking - Add backwards compatibility for existing data - Create enhanced UI components (ColorSwatch, InventoryBadge, MaterialBadge) - Add advanced filtering with quick filters and multi-criteria search - Organize codebase for dev/prod environments - Update Lambda functions to support both V1/V2 formats - Add inventory summary dashboard - Clean up project structure and documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
689 B
Plaintext
55 lines
689 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Production
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# Vite
|
|
.vite/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Terraform
|
|
terraform/.terraform/
|
|
terraform/*.tfstate
|
|
terraform/*.tfstate.*
|
|
terraform/*.tfvars
|
|
terraform/.terraform.lock.hcl
|
|
terraform/crash.log
|
|
terraform/crash.*.log
|
|
terraform/*.tfplan
|
|
terraform/override.tf
|
|
terraform/override.tf.json
|
|
terraform/*_override.tf
|
|
terraform/*_override.tf.json
|
|
|
|
# Lambda packages
|
|
lambda/*.zip
|
|
lambda/**/node_modules/ |