@platforma-sdk/bootstrap 2.5.0 → 2.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -52,6 +52,7 @@ services:
52
52
  - "PL_LOG_RESOURCE_DATA=${PL_LOG_RESOURCE_DATA:-false}"
53
53
 
54
54
  - "PL_AUTH_ENABLED=${PL_AUTH_ENABLED:-false}"
55
+ - "PL_AUTH_HTPASSWD_PATH=${PL_AUTH_HTPASSWD_PATH:+/etc/platforma/users.htpasswd}"
55
56
 
56
57
  # Data Controller: general settings
57
58
  - "PL_DATA_CREATE_BUCKET=true" # try to automatically create buckets for storages if they not exist
@@ -78,7 +79,7 @@ services:
78
79
  - "PL_DATA_LIBRARY_S3_SECRET=${PL_DATA_PRIMARY_S3_SECRET:-static:testpassword}"
79
80
 
80
81
  volumes:
81
- - ${PL_AUTH_HTPASSWD_PATHL-/dev/null}:/etc/platforma/users.htpasswd
82
+ - ${PL_AUTH_HTPASSWD_PATH-/dev/null}:/etc/platforma/users.htpasswd
82
83
  - ${PL_LICENSE_FILE:-/dev/null}:/storage/mi.license
83
84
  - ${PL_LOG_FILE:-/dev/null}:/var/log/platforma.log
84
85
  - ${PL_DATA_DB_ROOT}:/storage/rocksdb
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platforma-sdk/bootstrap",
3
- "version": "2.5.0",
3
+ "version": "2.5.2",
4
4
  "description": "MiLaboratories Platforma Backend bootstrap code: configuration generators, service run wrappers and so on",
5
5
  "bin": {
6
6
  "pl-service": "./bin/run.js"
@@ -27,8 +27,8 @@
27
27
  "tsconfig-paths": "^4.2.0",
28
28
  "typescript": "~5.5.4",
29
29
  "vite": "^5.4.8",
30
- "@milaboratories/oclif-index": "1.0.1",
31
- "@milaboratories/platforma-build-configs": "1.0.2"
30
+ "@milaboratories/platforma-build-configs": "1.0.2",
31
+ "@milaboratories/oclif-index": "1.0.1"
32
32
  },
33
33
  "dependencies": {
34
34
  "@oclif/core": "^4.0.27",
@@ -40,7 +40,7 @@
40
40
  "yaml": "^2.5.1",
41
41
  "zod": "^3.23.8",
42
42
  "@milaboratories/pl-config": "1.2.7",
43
- "@milaboratories/pl-local": "1.2.6"
43
+ "@milaboratories/pl-local": "1.3.0"
44
44
  },
45
45
  "oclif": {
46
46
  "bin": "pl-service",