Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.73 KB

install_using_cloud9.md

File metadata and controls

49 lines (39 loc) · 1.73 KB

Instructions for installing AWS SaaS Boost using AWS Cloud9.

By default, Cloud9 inherits the AWS permissions for the user or role which you are logged into the AWS Console as. Make sure that role has full admin permissions necessary to install AWS SaaS Boost.

  1. Login to AWS Console and create an AWS Cloud9 environment using Amazon Linux 2 and an instance type with at least 4GB RAM. For example, choose Other instance type and then select T2 or T3 medium.

  2. Launch the Cloud9 environment by clicking the Open IDE button.

  3. Cloud9 environments have 10GB of disk space by default. Resize the Cloud9 environment (recommend at least 20GB) using the resize.sh script here - https://docs.aws.amazon.com/cloud9/latest/user-guide/move-environment.html#move-environment-resize

chmod +x ./resize.sh
./resize.sh 20
df -h
  1. Run the following command to clone the SaaS Boost git repository:
git clone https://github.com/awslabs/aws-saas-boost.git aws-saas-boost
  1. We need a newer version of Apache Maven than the default. To install a more recent version, run the following commands:
sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo
sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo
sudo yum install -y apache-maven
  1. Set default Java version back to Amazon Corretto 11 (select option 1 for both)
sudo alternatives --config java

sudo alternatives --config javac
  1. Upgrade to node 14
nvm install 14
  1. Install yarn
npm install --global yarn
  1. Run AWS SaaS Boost install script
cd ~/environment/aws-saas-boost
./install.sh
  1. Follow the install script prompts to install AWS SaaS Boost!