First commit
This commit is contained in:
13
composeApp/src/desktopMain/kotlin/org/neutrino/ktans/main.kt
Normal file
13
composeApp/src/desktopMain/kotlin/org/neutrino/ktans/main.kt
Normal file
@@ -0,0 +1,13 @@
|
||||
package org.neutrino.ktans
|
||||
|
||||
import androidx.compose.ui.window.Window
|
||||
import androidx.compose.ui.window.application
|
||||
|
||||
fun main() = application {
|
||||
Window(
|
||||
onCloseRequest = ::exitApplication,
|
||||
title = "KTrans",
|
||||
) {
|
||||
App()
|
||||
}
|
||||
}
|
||||
6
composeApp/src/desktopMain/resources/application.conf
Normal file
6
composeApp/src/desktopMain/resources/application.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
h2 {
|
||||
driver = org.h2.Driver
|
||||
url = "jdbc:h2:file:./data/%s;DB_CLOSE_DELAY=-1;"
|
||||
user = "sa"
|
||||
password = ""
|
||||
}
|
||||
Reference in New Issue
Block a user