feat: complete Oracle and MariaDB WebView data layer

This commit is contained in:
2026-07-10 05:33:19 +09:00
parent 5aa90e4aaa
commit 39c4504b87
44 changed files with 3956 additions and 46 deletions

View File

@@ -1,21 +1,29 @@
{
"database": {
"oracle": {
"host": "",
"port": 1521,
"serviceName": "",
"userName": ""
},
"mariaDb": {
"host": "",
"port": 3306,
"database": "",
"userName": ""
}
"oracle": {
"host": "",
"port": 1521,
"sid": "",
"serviceName": null,
"userName": "",
"password": "",
"connectTimeoutSeconds": 10,
"commandTimeoutSeconds": 30,
"pooling": true
},
"playout": {
"host": "127.0.0.1",
"port": 30001,
"sceneFolder": ""
"mariaDb": {
"host": "",
"port": 3306,
"database": "",
"userName": "",
"password": "",
"tlsMode": "Preferred",
"connectTimeoutSeconds": 10,
"commandTimeoutSeconds": 30,
"pooling": true
},
"resilience": {
"operationTimeoutSeconds": 45,
"maximumRetryCount": 2,
"initialRetryDelayMilliseconds": 250
}
}