Grails Forge CLI `create-app` and `create-webapp` ...
# questions
m
Grails Forge CLI
create-app
and
create-webapp
commands create identical projects, except for the
README.md
and the
application.yml
. Anyone has the background why there are two commands?
Copy code
mattias@mattias-z4-linux:~/test/diffprojects$ grails -V
Grails Version: 7.0.0-M1
JVM Version: 17.0.9
mattias@mattias-z4-linux:~/test/diffprojects$ diff -r create-app/test create-webapp/test
diff -r create-app/test/grails-app/conf/application.yml create-webapp/test/grails-app/conf/application.yml
7,9d6
<   codegen:
<     defaultPackage: test
<   profile: web
52a50,52
>   codegen:
>     defaultPackage: test
>   profile: web
diff -r create-app/test/README.md create-webapp/test/README.md
8,11d7
< ## Feature asset-pipeline-grails documentation
< 
< - [Grails Asset Pipeline Core documentation](<https://github.com/bertramdev/asset-pipeline#readme>)
< 
16a13,16
> 
> ## Feature asset-pipeline-grails documentation
> 
> - [Grails Asset Pipeline Core documentation](<https://github.com/bertramdev/asset-pipeline#readme>)
j
I accidentally responded in the wrong thread. See https://grails.slack.com/archives/C07M0GTDE/p1736892633135659 for follow up. I am sorry about that.
👍 1