nova 2020-05-31 05:51:15 +00:00
parent 4434652734
commit 8f29708bd8

13
Building.md Normal file

@ -0,0 +1,13 @@
# Building
From the root of the project, do
```bash
./mvnw package
```
This will build the frontend in dev mode. \
Once done, the jar file will be available in the target directory.
To build the frontend in production mode, it is necesarry to pass an argument to grunt -
```bash
./mvnw -DgruntArg=prod package
```