This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_models] Initializing app database "/home/user/.local/share/app.yaak.desktop/db.sqlite" | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_models::migrate] Running database migrations | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_models::migrate] No migrations to run out of 66 | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_models] Initializing blobs database "/home/user/.local/share/app.yaak.desktop/blobs.sqlite" | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_models::blob_manager] Running blob database migrations | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_models::blob_manager] No blob migrations to run | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_plugins::manager] Starting plugin server on 127.0.0.1:46807 | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_plugins::nodejs] Starting plugin runtime node=/tmp/.mount_yaak_2mkBfaP/usr/lib/yaak/vendored/node/yaaknode main=/tmp/.mount_yaak_2mkBfaP/usr/lib/yaak/vendored/plugin-runtime/index.cjs | |
| [2026-03-19][14:42:40][[37mINFO[0m][yaak_plugins::nodejs] S |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| KEYID="$1" | |
| gpg --export-secret-keys "$KEYID" > private.gpg | |
| gpg --export "$KEYID" > public.gpg | |
| gpg --output revoke.asc --gen-revoke "$KEYID" | |
| echo "$KEYID" > key.info |