From 1a6355599beef9931f1c23025b89936d2ed2dab7 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn <github@nathan.woodburn.au> Date: Fri, 28 Mar 2025 11:50:42 +1100 Subject: [PATCH] feat: Add initial readme --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..875367b --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Device setup +First generate a ssh key +```sh +ssh-keygen -t ed25519 -C "nathan@woodburn.au" +eval "$(ssh-agent -s)" +ssh-add ~/.ssh/id_ed25519 +cat ~/.ssh/id_ed25519.pub +``` +Save the key in Git to allow setup + +```sh +git clone git@woodburn.au:nathanwoodburn/device-setup.git +cd device-setup +./setup.sh +```