Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 910 Bytes

features.adoc

File metadata and controls

14 lines (11 loc) · 910 Bytes

Features consist of additional dependencies and configuration to enable specific functionality in your application. Micronaut profiles define a large number of features, including features for many of the configurations provided by Micronaut, such as the Data Access Configurations

$ mn create-app my-demo-app --features mongo-reactive

This adds the necessary dependencies and configuration for the MongoDB Reactive Driver in your application. You can view the available features using the --list-features flag for whichever create command you use.

$ mn create-app --list-features # Output will be supported features for the create-app command
$ mn create-function-app --list-features # Output will be supported features for the create-function-app command, different from above.