chore: initial commit

This commit is contained in:
2023-04-10 15:02:23 +02:00
commit 3db349aeb9
30 changed files with 3355 additions and 0 deletions

26
conveyor.conf Normal file
View File

@@ -0,0 +1,26 @@
// This is a hashbang include. You can run the command after the #! to see what
// configuration is being extracted from the Gradle build using the Conveyor plugin.
include "#!./gradlew -q printConveyorConfig"
// Config file documentation: https://conveyor.hydraulic.dev/latest/configs
app {
site.base-url = "localhost:3000"
display-name = "Oraksi"
rdns-name = "com.lenis0012.oraksi"
// Windows gets square icons, macOS and Linux icons with rounded corners.
icons = {
label = "FX"
}
// Ensure the icons are also included as data files so we can set the window icon.
// See the method HelloApplication.loadIconsFromStage().
windows.inputs += TASK/rendered-icons/windows
linux.inputs += TASK/rendered-icons/linux
// Check for and apply updates synchronously on every app launch instead of in the background.
// Consider removing this line for your own app!
updates = aggressive
}
conveyor.compatibility-level = 8