Skip to content

Instantly share code, notes, and snippets.

@vald5116
Last active June 25, 2020 13:06
Show Gist options
  • Save vald5116/0f474120786851c40822ce483afbf603 to your computer and use it in GitHub Desktop.
Save vald5116/0f474120786851c40822ce483afbf603 to your computer and use it in GitHub Desktop.
Быстрая настройка сервера
#!/bin/sh
echo "Start app"
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
PACKAGES="git nodejs build-essential"
sudo apt-get -y --force-yes install $PACKAGES
npm i pm2 -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment