To create a Grails application, use the grails create-app command. The following command creates a Grails application, named myapp in the current directory:
grails create-app fancy-app
Running it, is as simple as visiting the, newly created, application directory:
cd fancy-app
and then
grai...