Groovy Installing Grails:
Install JAVA on Linux system before starting
Check java version using command
$> java -version
Install grails on Linux using Installing-a-grails-development-environment-on-linux
Before installing grails, you will need to install GVM (Grails version manager) from Installing GVM Tool
After installing GVM from the link above, we can run the sample Grails application. Check it out by the team
$> grails -version
Checking the environment variable is set or not for Java, as well as for Grails with the command
$> printenv
Create a demo application and start the server for Grails using:
$> grails create-app demo
Go to the way
$> cd demo/
Start the server
$> grails run-app
Start the server on a specific port 9090
$> grails run-app -Dserver.port=9090
Tools and work environment configured for Groovy Grails:
Install the GGTS (Groovy Grails Tool Suit) using the GGTS with the Eclipse IDE and tool
Select the Eclipse package in linux from the link above:
YouTube Video Tutorial:
All Grails video documentation videos for installing and running the sample application are here YouTube Channel
source share