jamesfredley commented on code in PR #14809: URL: https://github.com/apache/grails-core/pull/14809#discussion_r2145837767
########## grails-doc/src/en/guide/commandLine/creatingProject.adoc: ########## @@ -17,7 +17,18 @@ specific language governing permissions and limitations under the License. //// -Creating a project is the primary usage of the CLI. The primary command for creating a new project is create-app, which creates a standard Grails web application that communicates over HTTP. For other types of application, see the documentation below. +Creating a project is the primary usage of the Forge CLI. + +The `create-app` and other project scaffolding commands are part of the **Forge CLI**, which must now be run using the following format: + +[source,console] +---- +$ ./grails -t forge create-app myapp +---- + +Do *not* use `create-app` directly with just `./grails`, as that now runs the legacy shell CLI and will not recognize Forge commands. Review Comment: Let's change this from a sentence about **do not**, to additionally you can generate an application with grails-shell, which uses profiles. `grails create-app my-app` I think we also want to keep this sentence above > The primary command for creating a new project is create-app, which creates a standard Grails web application that communicates over HTTP. For other types of application, see the documentation below. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
