Small desktop tool to automatically backup WoW Addon configuration. Built with Kotlin and Compose Multiplatform.
Find a file
2026-03-04 14:19:19 +00:00
composeApp Config screen 2026-03-04 14:19:19 +00:00
docs Config screen 2026-03-04 14:19:19 +00:00
gradle Config screen 2026-03-04 14:19:19 +00:00
.gitignore Init 2026-03-04 14:19:19 +00:00
build.gradle.kts Config screen 2026-03-04 14:19:19 +00:00
gradle.properties Init 2026-03-04 14:19:19 +00:00
gradlew Init 2026-03-04 14:19:19 +00:00
gradlew.bat Init 2026-03-04 14:19:19 +00:00
README.md Init 2026-03-04 14:19:19 +00:00
settings.gradle.kts Config screen 2026-03-04 14:19:19 +00:00

WoW Backup

Tech

This is a Kotlin Compose Multiplatform project targeting Desktop (JVM).

  • /composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:
    • commonMain is for code that's common for all targets.
    • Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. If you want to edit the Desktop (JVM) specific part, the jvmMain folder is the appropriate location.

Build and Run Application

To build and run the development version of the desktop app, use the run configuration from the run widget in your IDE's toolbar or run it directly from the terminal:

  • on macOS/Linux
    ./gradlew :composeApp:run
    
  • on Windows
    .\gradlew.bat :composeApp:run