Last active
June 25, 2020 13:06
-
-
Save vald5116/0f474120786851c40822ce483afbf603 to your computer and use it in GitHub Desktop.
Быстрая настройка сервера
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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