even more tests

This commit is contained in:
2019-10-27 04:23:06 +03:00
parent 4cdcd80d51
commit 2a1eb9430e
20 changed files with 176 additions and 53 deletions

View File

@ -1,16 +1,16 @@
me.arcanis.ffxivbis {
ariyala {
// ariyala base url, string, required
# ariyala base url, string, required
ariyala-url = "https://ffxiv.ariyala.com"
// xivapi base url, string, required
# xivapi base url, string, required
xivapi-url = "https://xivapi.com"
// xivapi developer key, string, optional
# xivapi-key = "abc-def"
# xivapi developer key, string, optional
# xivapi-key = "abcdef"
}
database {
// database section. Section must be declared inside
// for more detailed section descriptions refer to slick documentation
# database section. Section must be declared inside
# for more detailed section descriptions refer to slick documentation
mode = "sqlite"
sqlite {
@ -35,19 +35,19 @@ me.arcanis.ffxivbis {
}
settings {
// counters of Player class which will be called to sort players for loot priority
// list of strings, required
# counters of Player class which will be called to sort players for loot priority
# list of strings, required
priority = [
"isRequired", "lootCountBiS", "priority", "lootCount", "lootCountTotal"
]
// general request timeout, duratin, required
# general request timeout, duratin, required
request-timeout = 10s
}
web {
// address to bind, string, required
# address to bind, string, required
host = "0.0.0.0"
// port to bind, int, required
# port to bind, int, required
port = 8000
}
}