From c2ae433c8f69fb7a92e26664ed6d8be5f69cfbce Mon Sep 17 00:00:00 2001 From: Anthony Berg Date: Thu, 17 Oct 2024 20:36:51 +0200 Subject: [PATCH] docs: complete README.md --- README.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e930161..a0eb50a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,29 @@ # Kahoot! Challenge -This is the solution for the coding challenge. \ No newline at end of file +This is the solution for the Kahoot! Challenge 2025 created by +Anthony Berg. It was a fun challenge! :) + +## Requirements +This has been tested using Java 21, so Java 21 or later is required. + +## Running + +To run the program, run it from the command line: +```shell +app +``` + +This can be run without compiling the application first, by using Gradle: +```shell +./gradlew run --args="example.txt" +``` + +The example file is provided: [app/example.txt](app/example.txt). + +## Compiling +To compile the application, run: +```shell +./gradlew assembleDist +``` +And the archive for the application should be located in `app/build/distributions/`. +Then extract the archive and run the app in `app/bin/`. \ No newline at end of file