mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
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.
7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/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 |