Fix cache_dir() problem, made it configurable

This commit is contained in:
Ulf Wiger
2025-10-15 12:41:00 +02:00
parent 1e60f35dd3
commit 847ffc810a
18 changed files with 48 additions and 18 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
-module(gmhc_config_schema).
-vsn("0.6.1").
-vsn("0.8.3").
-export([ schema/0
, to_json/0
@@ -51,6 +51,7 @@ schema() ->
, pool => pool()
, pool_admin => pool_admin()
, workers => workers()
, cache_dir => str(#{description => <<"Location of cache, default is 'setup:data_dir()'">>})
, report => str(#{ enum => [<<"debug">>, <<"progress">>, <<"silent">>]
, default => <<"silent">>
, description => <<"Progress reporting">> })