grails - create-app creates the application in the current directory -
i'm using latest grails version (3.1.12) , following official getting started guide.
i'm stuck @ 2.3 creating application.
c:\users\xehpuk\grails-apps>grails | enter command name run. use tab completion: grails> create-app helloworld | application created @ c:\users\xehpuk\grails-apps | resolving dependencies. please wait...
these new contents of c:\users\xehpuk\grails-apps
:
.gitignore build build.gradle gradle gradle.properties gradlew gradlew.bat grails-app src
obviously, command create-app
creates app in current directory instead of subdirectory helloworld
, if had used option --inplace
.
why , how change this?
the issue using create-app
command within grails shell , shouldn't be.
the create-app
command should run command line of os such:
grails create-app helloworld
Comments
Post a Comment