From e178954e8a47b7b4216173368c946a16cb03b311 Mon Sep 17 00:00:00 2001 From: Wes Coderre <44785917+kidCaulfield@users.noreply.github.com> Date: Tue, 21 Feb 2023 14:22:56 -0800 Subject: [PATCH] Create setup-for-development --- setup-for-development | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup-for-development diff --git a/setup-for-development b/setup-for-development new file mode 100644 index 0000000..581c859 --- /dev/null +++ b/setup-for-development @@ -0,0 +1,13 @@ +#!/bin/bash + +# install nvm and nodejs + +# NVM +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash + +# at this point check if script to load nvm was added to profile or others profiles such as .bashrc +# if was not add make script that add's the export script +# reload profile edited eg. `source ~/.bash_profile` + +# install node +nvm install node