Updated `.idea/artifacts` files to include module output elements for `jvmMain` and `jsMain`. Replaced hardcoded server port with dynamic `SERVER_PORT` variable in `Main.kt` for improved configurability and maintainability.
Updated the Kotlin Multiplatform plugin to version 2.1.20 and kotlin-komponent dependency to version 1.2.5. Added an opt-in annotation for the ExperimentalDistributionDsl to enable experimental features in the build script.
Replace the hardcoded root project name with a dynamic one by using the REPO_NAME variable. This allows the project name to be easily configured and adjusted according to different environments or repository settings.
Move SERVER_PORT and JDBC_PORT constants from Main.kt to Placeholders.kt to centralize configuration. This change improves maintainability by keeping related constants together in a single file. Additionally, it ensures that any updates to port configurations are managed more easily.
Moved REPO_NAME and related constants into Placeholders.kt to improve code organization and maintainability. The code now dynamically references these constants where needed, simplifying updates and ensuring consistency across modules. Updated relevant imports and references to accommodate these changes.
Create a new .gitea/template file to specify codebase structure. This file includes settings for the repository name and Kotlin file patterns, aiding in standardized project setup.
Reorganized Kotlin package structure under 'nl.astraeus' and removed 'gradle.properties' file. Updated '.gitignore' to exclude 'gradle.properties'. Added new web functionalities including ID generation, websocket and HTTP request handling to support dynamic web content delivery. Adjusted server configuration and modified build version.