From ffbfbad56681f7e578960e28b2f2c049be0e96e9 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Mon, 25 Mar 2024 17:04:07 -0500 Subject: [PATCH] feat: add simple dev contrib Signed-off-by: jolheiser --- contrib/dev.nu | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 contrib/dev.nu diff --git a/contrib/dev.nu b/contrib/dev.nu new file mode 100644 index 0000000..03acaea --- /dev/null +++ b/contrib/dev.nu @@ -0,0 +1,16 @@ +# Clean +rm -r .ugit/ +rm -r .ssh/ + +# SSH +mkdir .ssh +http get https://github.com/jolheiser.keys | save --force .ssh/authorized_keys + +# Git +mkdir .ugit +git clone --bare https://git.jolheiser.com/ugit.git .ugit/ugit.git +{"private": false, "description": "ugit"} | save .ugit/ugit.git/ugit.json +git clone --bare https://git.jolheiser.com/helix.drv.git .ugit/helix.drv.git +{"private": false, "description": "helix.drv"} | save .ugit/helix.drv.git/ugit.json +git clone --bare https://git.jolheiser.com/jolheiser.com.git .ugit/jolheiser.com.git +{"private": false, "description": "jolheiser.com"} | save .ugit/jolheiser.com.git/ugit.json