Skip to content

Instantly share code, notes, and snippets.

@kukielp
Last active June 20, 2020 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kukielp/63905ce3a9f8cf520bac3b160ef865f8 to your computer and use it in GitHub Desktop.
Save kukielp/63905ce3a9f8cf520bac3b160ef865f8 to your computer and use it in GitHub Desktop.
sudo yum install -y https://corretto.aws/downloads/latest/amazon-corretto-8-x64-linux-jdk.rpm
wget https://services.gradle.org/distributions/gradle-6.5-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-6.5-bin.zip
export GRADLE_HOME=/opt/gradle/gradle-6.5
export PATH=${GRADLE_HOME}/bin:${PATH}
cat >> ~/.bash_profile <<TXT
export GRADLE_HOME=${GRADLE_HOME}
export PATH=${GRADLE_HOME}/bin:${PATH}
TXT
gradle -v
git clone https://github.com/foundeo/fuseless.git
cd fuseless
./test.sh
cd ..
git clone https://github.com/kukielp/fuseless-template.git
cd fuseless-template
./init.sh
gradle build
sam deploy --guided
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment