Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you alter a Micronaut App features from the command line?

Tags:

micronaut

I created a new Micronaut from the CLI and tinkered around a bit then realized that I could add features from the cli but it seems to only be an option when calling create-app.

Is there a way to add features from the command line after the app has been created?

like image 868
lees2bytes Avatar asked Nov 02 '18 10:11

lees2bytes


1 Answers

Unfortunately no, the CLI is limited to project-generation commands (create-app, create-federation) and code-generation (commands like create-controller and create-client). It does not have the ability to modify existing projects at this time.

like image 142
ZacharyAKlein Avatar answered Sep 28 '22 01:09

ZacharyAKlein