Skip to content

Instantly share code, notes, and snippets.

@perezpaya
Last active December 20, 2015 18:58
Show Gist options
  • Save perezpaya/6179368 to your computer and use it in GitHub Desktop.
Save perezpaya/6179368 to your computer and use it in GitHub Desktop.
Reinstalación de servidor
#!usr/bin/sh
sudo DEBIAN_FRONTEND=noninteractive
# Installs Node, Python && Forever
apt-get -y update
apt-get -y -qq install python-software-properties python g++ make
add-apt-repository ppa:chris-lea/node.js
apt-get -y -qq update
apt-get -y -qq install nodejs
npm install forever -g
# Installs other dependencies
apt-get -y -qq install git redis-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment