mattias_reichel
01/15/2025, 10:13 AMcreate-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?
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>)jeffscottbrown
01/15/2025, 2:32 PM