=== Micronaut Starter 4.4.0 (https://launch.micronaut.io) Micronaut Starter generates example project for the Micronaut framework (https://micronaut.io). The API is defined by the OpenAPI 3 specification https://launch.micronaut.io/swagger/views/swagger-ui/index.html The primary API for generating application is https://launch.micronaut.io/create/{type}/{name}. The application type can be one of the following: +-----------------+------------------------------------------+ | ID | Description | +-----------------+------------------------------------------+ | DEFAULT | A Micronaut Application | | CLI | A Command Line Application | | FUNCTION | A Function Application for Serverless | | GRPC | A gRPC Application | | MESSAGING | A Messaging-Driven Application | +-----------------+------------------------------------------+ The "name" can be whatever you choose. Available query parameters include: +-----------------+------------------------------------------+------------------------------+ | Parameter | Description | Default value | +-----------------+------------------------------------------+------------------------------+ | build | The build system | gradle | | lang | The target language | java | | test | The test framework | junit | | features | The features you wish to include | defaults | +-----------------+------------------------------------------+------------------------------+ To view the possible features and their descriptions visit: https://launch.micronaut.io/application-types/{type}/features === Examples To create a default application: $ curl https://launch.micronaut.io/create/DEFAULT/example -o example.zip To create a Maven application: $ curl https://launch.micronaut.io/create/DEFAULT/example?build=maven -o example.zip To create a Kotlin application: $ curl https://launch.micronaut.io/create/DEFAULT/example?lang=kotlin -o example.zip