From 09dca236b70202b283ebe6b69ea8ae49d9d9a5f5 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Tue, 14 Nov 2023 15:05:33 +0000 Subject: [PATCH] feat: start making this setup "self-hosted" --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c88969..0c7485d 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,20 @@ sudo echo "Hello world!" ``` sudo apt install git + +git config --global user.email "nuno.semperelh@protonmail.com" # to do: add part of a script that asks you for this, or lets you configure it +git config --global user.name "NunoSempere" +git config --global credential.helper 'store --file ~/.^C +git config --global init.defaultBranch master + cd ~/Documents git clone https://git.nunosempere.com/open.source/nunOS.git ``` +N.B.: Could also just provide a bash script to fetch with wget. The script could then fetch other scripts? Yeah, that's probably the way to go in the end. But for now I'll be writting the individual scripts that that future script will orchestrate. +### Install a few essentials. - +``` +sudo apt install neovim tmux +```