Skip to content

Instantly share code, notes, and snippets.

@AAlvz
Last active July 27, 2016 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AAlvz/d36f9f2984a0a7aab6f2dfd45339ee1f to your computer and use it in GitHub Desktop.
Save AAlvz/d36f9f2984a0a7aab6f2dfd45339ee1f to your computer and use it in GitHub Desktop.
apt-get install sudo
groupadd sysadmin
useradd -s /bin/bash -m -d /home/intern1 -g sysadmin -G sudo intern1
visudo
passwd intern1
mkdir /opt/tinker
cd /opt/tinker
sudo apt-get install git
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_4.x | bash -
git clone https://github.com/reactjs/react-tutorial.git #Replace this for your assigned repo.
cd react-tutorial #cd into the folder of your cloned file.
node install
node run build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment