mirror of
https://github.com/cgzirim/seek-tune.git
synced 2025-12-17 17:04:22 +00:00
Create install_dependencies.sh
This commit is contained in:
parent
9771915242
commit
49092b14d8
1 changed files with 21 additions and 0 deletions
21
scripts/install_dependencies.sh
Normal file
21
scripts/install_dependencies.sh
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# clear codedeploy-agent files for a fresh install
|
||||
sudo rm -rf /home/ubuntu/install
|
||||
|
||||
# install CodeDeploy agent
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install ruby
|
||||
sudo apt-get -y install wget
|
||||
cd /home/ubuntu
|
||||
wget https://aws-codedeploy-eu-north-1.s3.amazonaws.com/latest/install
|
||||
sudo chmod +x ./install
|
||||
sudo ./install auto
|
||||
|
||||
# install golang
|
||||
sudo apt-get -y install golang-go
|
||||
|
||||
# install nodeJS and nvm
|
||||
sudo apt install nodejs
|
||||
sudo apt install npm
|
||||
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
|
||||
Loading…
Add table
Reference in a new issue