refactor XR controller handling in design mode

This commit is contained in:
2026-04-18 15:23:49 +03:00
parent 99ba537c66
commit c611cb6439
11 changed files with 78 additions and 65 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ class Config{
* @type {string}
* @memberof FileSystemOptions
*/
repo: null
repo: pe.FS_REPO || null
}
/**
@@ -29,13 +29,13 @@ class Config{
* @type {string}
* @memberof DatabaseOptions
*/
name:'pronature',
name:pe.DB_NAME || 'pronature',
/** Database connection string, данни за свързване с базата от данни
* @type {string}
* @memberof DatabaseOptions
*/
url: "mongodb://127.0.0.1:27017/pronature"
url: pe.DB_URL || "mongodb://127.0.0.1:27017/pronature"
}
/**