task: clean project root

setup.sh appears to be a developer utility to assist in bootstrapping a debian
based system.  It is intended to help install the dependencies needed to run
node, and not used in any automated deploy pipeline.

Instructions have been updated to suite this change which simply moves the
developer tool out of the project repo and into the bin subdirectory.
This commit is contained in:
Ben West
2021-02-18 10:02:00 -08:00
parent 5953f082df
commit 3149bf8b95
2 changed files with 3 additions and 3 deletions
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/bin/sh
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get update
sudo apt-get install -y nodejs build-essential git
npm install