(feat): migrate experimental tauri cef to electron
(feat): add flake to expose tensamin desktop package (qol): update todo
This commit is contained in:
parent
be80e2f387
commit
a209ade10b
32 changed files with 1649 additions and 459 deletions
11
apps/electron/scripts/generate-signing-key.ts
Normal file
11
apps/electron/scripts/generate-signing-key.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { generateKeyPairSync } from "node:crypto";
|
||||
|
||||
const { privateKey, publicKey } = generateKeyPairSync("ed25519", {
|
||||
privateKeyEncoding: { type: "pkcs8", format: "pem" },
|
||||
publicKeyEncoding: { type: "spki", format: "pem" },
|
||||
});
|
||||
|
||||
console.log("TENSAMIN_UPDATE_PRIVATE_KEY_PEM=");
|
||||
console.log(privateKey.trim());
|
||||
console.log("\nTENSAMIN_UPDATE_PUBLIC_KEY_PEM=");
|
||||
console.log(publicKey.trim());
|
||||
Loading…
Reference in a new issue