- Add Gitea Actions workflow for automated build & deploy - Add K8s manifests: webui, travel-svc, medicine-svc, sandbox-svc - Update kustomization for localhost:5000 registry - Add ingress for gooseek.ru and api.gooseek.ru - Learning cabinet with onboarding, courses, sandbox integration - Medicine service with symptom analysis and doctor matching - Travel service with itinerary planning - Server setup scripts (NVIDIA/CUDA, K3s, Gitea runner) Made-with: Cursor
77 lines
801 B
Plaintext
77 lines
801 B
Plaintext
# Node
|
|
node_modules/
|
|
**/node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
package-lock.json
|
|
|
|
# Build output (кроме webui .next для standalone)
|
|
out/
|
|
dist/
|
|
**/dist/
|
|
*.tsbuildinfo
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
.github/
|
|
.gitea/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
*.swp
|
|
*.swo
|
|
|
|
# Env (NEVER in image)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Docs (не нужны в образе)
|
|
docs/
|
|
*.md
|
|
LICENSE
|
|
CHANGELOG*
|
|
CONTINUE.md
|
|
AGENTS.md
|
|
|
|
# Deploy scripts (не в образ, только код)
|
|
backend/deploy/scripts/
|
|
backend/deploy/k8s/*.sh
|
|
*.sh
|
|
|
|
# Data, certs
|
|
db.sqlite
|
|
*.sqlite
|
|
certificates/
|
|
searxng/
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Misc
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|
|
coverage/
|
|
**/coverage/
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Test files
|
|
**/*_test.go
|
|
**/test/
|
|
**/tests/
|
|
**/__tests__/
|
|
|
|
# CI temp
|
|
.runner
|
|
*.runner
|
|
|
|
# Cursor/IDE
|
|
.cursor/
|
|
.cursorignore
|