Add docs to project structure #7

This commit is contained in:
Orlando M Guerreiro 2025-06-03 08:35:10 +01:00
parent eb3a621b17
commit d2bff4c062
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,23 @@
## ❓ Frequently Asked Questions
### Q: How to build a PROD jar?
**A:** The steps for a production JAR are:
- Open a command line, as Administrator
- Build front-end (Angular)
```bash
npm install
npm run build
```
- Build and package JAR
```bash
mvnw -Pprod clean verify
```
---