Created
June 9, 2022 11:53
-
-
Save harunurkst/df226be1eebc6baea9bb0c5dc5268fe2 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/bash | |
# Initialize credential veriable | |
dbname=teamshape | |
dbuser=admin | |
userpass=admin | |
# install python3.8 | |
echo "Installing python3.8" | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
sudo apt-get update -y | |
sudo apt install python3.8 -y | |
# Install python3.8 pip | |
echo "Installing python3.8-pip" | |
wget https://bootstrap.pypa.io/get-pip.py | |
python3.8 get-pip.py | |
rm get-pip.py | |
echo "Installing virtualenv" | |
sudo apt-get install python3-venv -y | |
sudo apt-get install curl -y | |
# create a virtualenvironment | |
python3 -m venv venv | |
# Install postgresql | |
sudo apt install wget ca-certificates -y | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" >> /etc/apt/sources.list.d/pgdg.list' | |
sudo apt-get update -y | |
sudo apt install postgresql postgresql-contrib -y | |
# Create database and user | |
sudo -u postgres psql -c "create database $dbname;" | |
sudo -u postgres psql -c "create user $dbuser;" | |
sudo -u postgres psql -c "alter user $dbuser with encrypted password '$userpass';" | |
sudo -u postgres psql -c "grant all privileges on database $dbname to $dbuser;" | |
echo "Database setup done" | |
# Install NodeJs | |
wget https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | |
chmod +x install.sh | |
./install.sh | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
source ~/.bashrc | |
nvm install v14.10.0 | |
echo "Node setup done" | |
rm install.sh | |
npm install --global yarn | |
npm install --global lerna | |
echo "Installing VSCode" | |
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | |
sudo apt install code | |
# thinning the Xubuntu | |
sudo apt-get autoclean -y | |
sudo apt-get clean -y | |
sudo apt-get autoremove -y | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment