a58b203b16
CI / test (push) Failing after 12m1s
- web/frontend/package.json: remove invalid @nuxtjs/tailwindcss (Nuxt-only package) - web/frontend/src/router/index.ts: prefix unused 'from' param with _ - web/frontend/src/views/ApiKeys.vue: remove unused 'Check' import - .gitignore: add *.tsbuildinfo, vite.config.js, vite.config.d.ts - web/frontend/package-lock.json: generated via npm install (required for CI npm ci)
79 lines
796 B
Plaintext
79 lines
796 B
Plaintext
# Go binaries
|
|
/llamalink
|
|
/llamalink-*
|
|
/dist/
|
|
/bin/
|
|
|
|
# Test artifacts
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
coverage.out
|
|
|
|
# Vendoring — using go modules
|
|
/vendor/
|
|
|
|
# Go workspace
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.env
|
|
!.env.example
|
|
|
|
# Database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite3
|
|
/data/
|
|
|
|
# LLM models y binarios
|
|
/models/
|
|
*.gguf
|
|
/llama-server
|
|
/llama-cli
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Frontend
|
|
web/frontend/node_modules/
|
|
web/frontend/dist/
|
|
web/frontend/.vite/
|
|
web/dist/
|
|
web/frontend/.env
|
|
web/frontend/.env.local
|
|
web/frontend/coverage/
|
|
web/frontend/*.tsbuildinfo
|
|
web/frontend/vite.config.js
|
|
web/frontend/vite.config.d.ts
|
|
|
|
# Build artifacts
|
|
*.tmp
|
|
*.bak
|
|
tmp/
|
|
.cache/
|
|
|
|
# Coverage reports
|
|
*.coverprofile
|
|
|
|
# Misc
|
|
vendor/
|