Skip to content

Instantly share code, notes, and snippets.

@matelau
Last active August 29, 2015 13:57
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 matelau/9669670 to your computer and use it in GitHub Desktop.
Save matelau/9669670 to your computer and use it in GitHub Desktop.
Add Play! Framework to Nitrious.io Box
#Create Dir for Play Framework to reside
mkdir Dev && cd Dev
#Download Play Framework!
wget http://downloads.typesafe.com/play/2.2.1/play-2.2.2.zip
#Extract
unzip play-2.2.2.zip
#update Path
vim ~/.bashrc
#add line to .bashrc
export PATH=$PATH:/home/action/Dev/play-2.2.2
#test functionality
cd ~/workspace && play new test
cd test
play "run 3000"
#Note: Play may require more memory then Nitrious.io boxes have by default to add more go into the settings for a box and
#increase the limit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment