Cheatsheet

Here’s a cheatsheet of a bunch of stuff I do a lot.

Create a Quarkus App using the cli

quarkus create app com.snimmo.app:app
cd app
quarkus ext add config-yaml resteasy-reactive-jackson hibernate-validator
mv src/main/resources/application.properties src/main/resources/application.yml
git init
git add --all
git commit -m 'project init'

Create an Angular app

ng new --routing --style scss --directory src/main/webui -g --ssr false --standalone false <app-name>
cd src/main/webui
ng add @ng-bootstrap/ng-bootstrap --skip-confirmation

ng g m -m app core
ng g m -m app shared
ng g m -m app public --routing
ng g c public/index