From dc64bdc9eb461be9cb7fb47525d0801828ce4d9f Mon Sep 17 00:00:00 2001 From: Gros Frumos Date: Tue, 17 Mar 2026 22:10:23 +0200 Subject: [PATCH 1/2] =?UTF-8?q?kin:=20KIN-111=20=D0=9D=D0=B5=20=D1=80?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=82=D0=B0=D0=B5=D1=82=20=D0=BA=D0=BD=D0=BE?= =?UTF-8?q?=D0=BF=D0=BA=D0=B0=20Deploy=20=D0=B2=20=D0=BF=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D0=B5,=20=D0=BF=D1=80=D0=BE=D1=81=D1=82=D0=BE=20?= =?UTF-8?q?=D0=BD=D0=B5=20=D0=BD=D0=B0=D0=B6=D0=B8=D0=BC=D0=B0=D0=B5=D1=82?= =?UTF-8?q?=D1=81=D1=8F,=20=D0=B2=20=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE?= =?UTF-8?q?=D0=B9=D0=BA=D0=B0=D1=85=20=D0=B2=D0=B8=D1=81=D0=B8=D1=82=20Une?= =?UTF-8?q?xpected=20token=20'<',=20'/dev/null | head -10` — найти git-репозитории; для каждого: `git -C remote -v && git -C log --oneline -3 2>/dev/null` — remote origin и последние коммиты 10. `ls -la ~/.ssh/ 2>/dev/null && cat ~/.ssh/authorized_keys 2>/dev/null` — список установленных SSH-ключей. Не читать приватные ключи (id_rsa, id_ed25519 без .pub) +## Data Safety + +**НИКОГДА не удаляй источник без бекапа и до подтверждения что данные успешно доставлены на цель. Порядок: backup → copy → verify → delete.** + +When moving or migrating data (files, databases, volumes): +1. **backup** — create a backup of the source first +2. **copy** — copy data to the destination +3. **verify** — confirm data integrity on the destination (checksums, counts, spot checks) +4. **delete** — only then remove the source + +Never skip or reorder these steps. If verification fails — stop and report, do NOT proceed with deletion. + ## Rules - Run commands one by one — do NOT batch unrelated commands in one ssh call From d83e3bb9d4fe59203d394d6e86f4eccf19af45b6 Mon Sep 17 00:00:00 2001 From: Gros Frumos Date: Tue, 17 Mar 2026 22:12:57 +0200 Subject: [PATCH 2/2] kin: auto-commit after pipeline --- web/frontend/vite.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/frontend/vite.config.ts b/web/frontend/vite.config.ts index 67c2dc0..abcdfd5 100644 --- a/web/frontend/vite.config.ts +++ b/web/frontend/vite.config.ts @@ -4,6 +4,11 @@ import vue from '@vitejs/plugin-vue' // https://vite.dev/config/ export default defineConfig({ plugins: [vue()], + server: { + proxy: { + '/api': 'http://localhost:8000', + }, + }, test: { environment: 'jsdom', globals: true,