建立應用程式

要建立 Grails 應用程式,請使用 grails create-app 命令。以下命令在當前目錄中建立名為 myapp 的 Grails 應用程式:

grails create-app fancy-app

執行它,就像訪問新建立的應用程式目錄一樣簡單:

cd fancy-app

然後

grails run-app 
// in order to run the app on a different port, e.g. 8888, use this instead
grails run-app -port 8888
// in order to run the app with a secure communication
grails run-app -https