gameyfin
gameyfin copied to clipboard
Provide Build instruction
Could you provide build instructions for the project ?
It's my understanding it's using maven but I'm not familiar at all with the build system.
You're correct, I'm using maven for Gameyfin.
Actually I'm also using npm for the frontend, but you don't have to take care of that since it's also integrated into the maven build chain.
To build, simply run mvn clean package
in the project root directory.
If you want to skip the tests, add the -DskipTests
flag to the command.
After the build ran successfully, you should see a "target" folder containing a .jar file.
I will add a wiki article describing the build chain in the future 🙂