first commit

This commit is contained in:
2025-02-18 15:25:17 +01:00
commit 37cf0e8062
7403 changed files with 1227142 additions and 0 deletions

19
config/balm-common.toml Normal file
View File

@ -0,0 +1,19 @@
# This is an example boolean property
exampleBoolean = true
exampleEnum = "Hello"
exampleEnumList = [ "Hello", "World" ]
exampleInt = 42
exampleIntList = [ 12, 24 ]
exampleMultilineString = "Hello World"
exampleString = "Hello World"
exampleStringList = [ "Hello", "World" ]
# This is an example category
[exampleCategory]
exampleFloat = 42.84
# This is an example string inside a category
innerField = "I am inside"