Add docs to project structure #7
This commit is contained in:
parent
eb3a621b17
commit
d2bff4c062
3 changed files with 88 additions and 0 deletions
23
docs/faqs/How to build a PROD jar.md
Normal file
23
docs/faqs/How to build a PROD jar.md
Normal 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
|
||||
```
|
||||
|
||||
---
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue