Showing posts with label IntelliJ. Show all posts
Showing posts with label IntelliJ. Show all posts

Getting started with play framework with IntelliJ IDEA on centos

If you dont have activator installed please see : http://mohiplanet.blogspot.com/2014/10/getting-started-with-playframework-with.html

After you have activator installed.Run:

  1. activator idea install

Run the following for installing intellij:
  1. cd /usr/local/
  2. #download intellij eap 14 ultimate
  3. wget http://download.jetbrains.com/idea/ideaIU-139.144.2.tar.gz
  4. tar xf ideaIU-139.144.2.tar.gz
  5. rm ideaIU-139.144.2.tar.gz
  6. #Make sure that root has permissions all the way through the unzipped directory
  7. chown -R root:root idea-IU-139.144.2/
  8. cd idea-IU-139.144.2/bin/
  9. #script to run start IDE conveniently
  10. echo "sh /usr/local/idea-IU-139.144.2/bin/idea.sh&" > /intellij.sh
  11. #lets run
  12. sh /intellij.sh


You will need IntelliJ Scala Plugin for using play framework.
See : https://confluence.jetbrains.com/display/SCA/Getting+Started+with+IntelliJ+IDEA+Scala+Plugin for installing sclala plugin on intellij.



References:
https://www.playframework.com/documentation/2.2.3/IDE

Install & run IntelliJ 14 Ultimate EAP on CentOS 6 Script(.sh)

  1. cd /usr/local/
  2. #download intellij eap 14 ultimate
  3. wget http://download.jetbrains.com/idea/ideaIU-139.144.2.tar.gz
  4. tar xf ideaIU-139.144.2.tar.gz
  5. rm ideaIU-139.144.2.tar.gz
  6. #Make sure that root has permissions all the way through the unzipped directory
  7. chown -R root:root idea-IU-139.144.2/
  8. cd idea-IU-139.144.2/bin/
  9. #script to run start IDE conveniently
  10. ln -s /usr/local/idea-IU-139.144.2/bin/idea.sh /usr/bin/intellij
  11. #lets run
  12. intellij