Add SSH configuration script and update Deno configuration files

This commit is contained in:
Karolis2011 2025-11-29 21:18:32 +02:00
commit 616a2d9c96
3 changed files with 577 additions and 0 deletions

10
deno.json Normal file
View file

@ -0,0 +1,10 @@
{
"imports": {
"@std/cli": "jsr:@std/cli@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0"
},
"tasks": {
"configure": "deno run --allow-read --allow-write --allow-run --allow-env configure_ssh_key.ts"
}
}