From 5f57b9fb99e86dca2fc0f45ab43b940e98407ae2 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 16 Nov 2023 18:47:31 +0530 Subject: [PATCH 1/3] Update README.md Fixes #195 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 945fc92c..fa552db3 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The CLI application comes in various flavours from a universal Java applications If you prefer not to install an application to create Micronaut applications you can do so with `curl` directly from the API: ```bash -$ curl https://forge.grails.org/demo.zip -o demo.zip +$ curl --location --request GET 'https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/create/web/com.example.demo?gorm=HIBERNATE&servlet=TOMCAT&test=SPOCK&javaVersion=JDK_11' --output demo.zip $ unzip demo.zip -d demo $ cd demo $ ./gradlew run From 09176e8935e718fcee29ddbd1629f46c9569fea3 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 16 Nov 2023 23:29:30 +0530 Subject: [PATCH 2/3] Shorten CURL URL --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa552db3..b9af6717 100644 --- a/README.md +++ b/README.md @@ -10,16 +10,16 @@ Generates Grails applications. The CLI application comes in various flavours from a universal Java applications to native applications for Windows, Linux and OS X. These are available for direct download on the [releases page](https://github.com/grails/grails-forge/releases). For installation see the [Grails documentation](https://docs.grails.org/latest/guide/index.html#buildCLI). -If you prefer not to install an application to create Micronaut applications you can do so with `curl` directly from the API: +If you prefer not to install an application to create Grails applications you can do so with `curl` directly from the API: ```bash -$ curl --location --request GET 'https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/create/web/com.example.demo?gorm=HIBERNATE&servlet=TOMCAT&test=SPOCK&javaVersion=JDK_11' --output demo.zip +$ curl -L 'https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/demo.zip' -o demo.zip $ unzip demo.zip -d demo $ cd demo $ ./gradlew run ``` -Run `curl https://forge.grails.org` for more information on how to use the API or see the API documentation referenced below. +Run `curl https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/` for more information on how to use the API or see the API documentation referenced below. ## UI From fa28ae02bd3d9ca732f0b4096109e6622498b3ef Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 23 Nov 2023 00:38:44 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b9af6717..c131be7c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The CLI application comes in various flavours from a universal Java applications If you prefer not to install an application to create Grails applications you can do so with `curl` directly from the API: ```bash -$ curl -L 'https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/demo.zip' -o demo.zip +$ curl 'https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/demo.zip' -o demo.zip $ unzip demo.zip -d demo $ cd demo $ ./gradlew run @@ -31,13 +31,13 @@ The user interface is [written in React](https://github.com/grails/grails-forge- API documentation for the production instance can be found at: -* [Swagger / OpenAPI Doc](https://start.grails.org/swagger/views/swagger-ui/index.html) -* [RAPI Doc](https://start.grails.org/swagger/views/rapidoc/index.html) +* [Swagger / OpenAPI Doc](https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/swagger-ui/index.html) +* [RAPI Doc](https://grailsforge-latest-cjmq3uyfcq-uc.a.run.app/rapidoc/index.html) API documentation for the snapshot /development instance can be found at: -* [Swagger / OpenAPI Doc](https://snapshot.grails.org/swagger/views/swagger-ui/index.html) -* [RAPI Doc](https://snapshot.grails.org/swagger/views/rapidoc/index.html) +* [Swagger / OpenAPI Doc](https://grailsforge-snapshot-cjmq3uyfcq-uc.a.run.app/swagger-ui/index.html) +* [RAPI Doc](https://grailsforge-snapshot-cjmq3uyfcq-uc.a.run.app/rapidoc/index.html) ## Documentation @@ -47,9 +47,7 @@ See the [Snapshot Documentation](https://grails.github.io/grails-forge/snapshot/ ## Snapshots and Releases -Snapshots are automatically published to [Sonatype OSSRH](https://s01.oss.sonatype.org/content/repositories/snapshots/) using [Github Actions](https://github.com/grails/grails-forge/actions). - -See the documentation in the [Grails Docs](https://docs.grails.org/latest/guide/index.html#usingsnapshots) for how to configure your build to use snapshots. +Snapshots are automatically published to [Sonatype OSSRH](https://s01.oss.sonatype.org/content/repositories/snapshots/org/grails/forge/) using [Github Actions](https://github.com/grails/grails-forge/actions). Releases are published to Maven Central via [Github Actions](https://github.com/grails/grails-forge/actions).