Set defaults for config options

This commit is contained in:
Parker M. 2025-04-03 22:33:50 -05:00
parent 7ac5a8c016
commit 06d903b4f6
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -57,8 +57,8 @@ schema = {
"type": "object",
"properties": {
"name": {"type": "string", "default": "disarchive"},
"host": {"type": "string"},
"port": {"type": "integer"},
"host": {"type": "string", "default": "localhost"},
"port": {"type": "integer", "default": 3306},
"user": {"type": "string"},
"password": {"type": "string"},
},
@ -74,8 +74,8 @@ schema = {
"type": "object",
"properties": {
"name": {"type": "string", "default": "disarchive"},
"host": {"type": "string"},
"port": {"type": "integer"},
"host": {"type": "string", "default": "localhost"},
"port": {"type": "integer", "default": 5432},
"user": {"type": "string"},
"password": {"type": "string"},
},