diff --git a/BUILD.md b/BUILD.md new file mode 100644 index 00000000..80e668d0 --- /dev/null +++ b/BUILD.md @@ -0,0 +1,23 @@ +# building Jelu locally + +## prerequisites + +- java 17 +- Jelu code source + +## building + +just `cd` in the root of the repo and run : + +```shell +./gradlew copyWebDist && ./gradlew assemble +``` + +Gradlew is included in the sources so you don't need anything else. + +Those commands will build the frontend and then the backend including the fat jar. + +You will find the jar in `build/libs`, it will be named `jelu-.jar` + +The jar is the same as the one that is published in github releases. +