This commit is contained in:
vorotamoroz
2024-11-11 01:23:07 +00:00
3 changed files with 29 additions and 1 deletions

3
utils/flyio/deno.jsonc Normal file
View File

@@ -0,0 +1,3 @@
{
"nodeModulesDir": "none"
}

25
utils/flyio/deno.lock generated Normal file
View File

@@ -0,0 +1,25 @@
{
"version": "4",
"specifiers": {
"npm:octagonal-wheels@0.1.11": "0.1.11"
},
"npm": {
"idb@8.0.0": {
"integrity": "sha512-l//qvlAKGmQO31Qn7xdzagVPPaHTxXx199MhrAFuVBTPqydcPYBWjkrbv4Y0ktB+GmWOiwHl237UUOrLmQxLvw=="
},
"octagonal-wheels@0.1.11": {
"integrity": "sha512-KsXfpziFHmlLEBe5VAXFz9OyyjJEEdSg7xxASqdzmbe5oo9dhcOeWGrQfyipRJwHAhlFkI4vEf8JCSgkcyRxYg==",
"dependencies": [
"idb",
"xxhash-wasm@0.4.2",
"xxhash-wasm-102@npm:xxhash-wasm@1.0.2"
]
},
"xxhash-wasm@0.4.2": {
"integrity": "sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA=="
},
"xxhash-wasm@1.0.2": {
"integrity": "sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A=="
}
}
}

View File

@@ -35,8 +35,8 @@ async function main() {
}
const encryptedConf = encodeURIComponent(await encrypt(JSON.stringify(conf), uri_passphrase, false));
const theURI = `${URIBASE}${encryptedConf}`;
console.log(theURI);
console.log("\nYour passphrase of Setup-URI is: ", uri_passphrase);
console.log("This passphrase is never shown again, so please note it in a safe place.")
console.log(theURI);
}
await main();