underpost 2.8.532 → 2.8.611

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.
Files changed (43) hide show
  1. package/.github/workflows/ghpkg.yml +1 -1
  2. package/.github/workflows/npmpkg.yml +1 -1
  3. package/.github/workflows/pwa-microservices-template.page.yml +1 -1
  4. package/.vscode/settings.json +3 -0
  5. package/bin/build.js +9 -0
  6. package/bin/index.js +33 -6
  7. package/bin/vs.js +1 -0
  8. package/docker-compose.yml +1 -1
  9. package/manifests/kind-config-dev.yaml +12 -0
  10. package/manifests/mongodb/kustomization.yaml +2 -2
  11. package/manifests/mongodb-4.4/service-deployment.yaml +5 -4
  12. package/package.json +8 -7
  13. package/src/cli/cluster.js +58 -32
  14. package/src/cli/cron.js +1 -1
  15. package/src/cli/db.js +102 -38
  16. package/src/cli/deploy.js +71 -38
  17. package/src/cli/fs.js +149 -0
  18. package/src/cli/image.js +36 -6
  19. package/src/cli/repository.js +21 -0
  20. package/src/cli/script.js +2 -2
  21. package/src/cli/test.js +19 -8
  22. package/src/client/components/core/CalendarCore.js +12 -1
  23. package/src/client/components/core/CommonJs.js +52 -1
  24. package/src/client/components/core/CssCore.js +2 -4
  25. package/src/client/components/core/Docs.js +1 -2
  26. package/src/client/components/core/Input.js +4 -2
  27. package/src/client/components/core/LoadingAnimation.js +8 -1
  28. package/src/client/components/core/Modal.js +30 -6
  29. package/src/client/components/core/Panel.js +8 -6
  30. package/src/client/components/core/PanelForm.js +23 -7
  31. package/src/client/services/core/core.service.js +15 -10
  32. package/src/client/ssr/Render.js +4 -1
  33. package/src/client/ssr/body/CacheControl.js +2 -3
  34. package/src/client/sw/default.sw.js +3 -3
  35. package/src/index.js +9 -1
  36. package/src/server/backup.js +2 -2
  37. package/src/server/client-build.js +32 -23
  38. package/src/server/client-formatted.js +2 -1
  39. package/src/server/conf.js +1 -1
  40. package/src/server/dns.js +2 -2
  41. package/src/server/runtime.js +16 -1
  42. package/manifests/valkey/underpost-engine-valkey-service.yaml +0 -17
  43. package/manifests/valkey/underpost-engine-valkey-statefulset.yaml +0 -39
@@ -49,6 +49,7 @@ const Modal = {
49
49
  mode: '' /* slide-menu */,
50
50
  RouterInstance: {},
51
51
  disableTools: [],
52
+ observer: false,
52
53
  },
53
54
  ) {
54
55
  if (options.heightBottomBar === undefined) options.heightBottomBar = 50;
@@ -76,6 +77,8 @@ const Modal = {
76
77
  options,
77
78
  onCloseListener: {},
78
79
  onMenuListener: {},
80
+ onCollapseMenuListener: {},
81
+ onExtendMenuListener: {},
79
82
  onDragEndListener: {},
80
83
  onObserverListener: {},
81
84
  onClickListener: {},
@@ -156,7 +159,8 @@ const Modal = {
156
159
  };
157
160
  options.mode === 'slide-menu-right' ? (options.style.right = '0px') : (options.style.left = '0px');
158
161
  const contentIconClass = 'abs center';
159
-
162
+ if (options.class) options.class += ' hide';
163
+ else options.class = 'hide';
160
164
  options.dragDisabled = true;
161
165
  options.titleClass = 'hide';
162
166
  top = '0px';
@@ -238,7 +242,7 @@ const Modal = {
238
242
  'body',
239
243
  html`
240
244
  <div
241
- class="abs main-body-btn-container"
245
+ class="abs main-body-btn-container hide"
242
246
  style="top: ${options.heightTopBar + 50}px; z-index: 9; ${true ||
243
247
  (options.mode && options.mode.match('right'))
244
248
  ? 'right'
@@ -1383,6 +1387,9 @@ const Modal = {
1383
1387
  if (options.onCollapseMenu) options.onCollapseMenu();
1384
1388
  s(`.sub-menu-title-container-${'modal-menu'}`).classList.add('hide');
1385
1389
  s(`.nav-path-container-${'modal-menu'}`).classList.add('hide');
1390
+ Object.keys(this.Data[idModal].onCollapseMenuListener).map((keyListener) =>
1391
+ this.Data[idModal].onCollapseMenuListener[keyListener](),
1392
+ );
1386
1393
  } else {
1387
1394
  slideMenuWidth = originSlideMenuWidth;
1388
1395
  setTimeout(() => {
@@ -1403,6 +1410,9 @@ const Modal = {
1403
1410
  if (options.onExtendMenu) options.onExtendMenu();
1404
1411
  s(`.sub-menu-title-container-${'modal-menu'}`).classList.remove('hide');
1405
1412
  s(`.nav-path-container-${'modal-menu'}`).classList.remove('hide');
1413
+ Object.keys(this.Data[idModal].onExtendMenuListener).map((keyListener) =>
1414
+ this.Data[idModal].onExtendMenuListener[keyListener](),
1415
+ );
1406
1416
  }
1407
1417
  // btn-bar-center-icon-menu
1408
1418
  this.actionBtnCenter();
@@ -1781,20 +1791,34 @@ const renderMenuLabel = ({ img, text, icon }) => {
1781
1791
  <div class="abs center main-btn-menu-text">${text}</div>`;
1782
1792
  };
1783
1793
 
1784
- const renderViewTitle = (options = { icon: '', img: '', text: '', assetFolder: '', 'ui-icons': '', dim, top }) => {
1785
- if (options.dim === undefined) options.dim = 60;
1794
+ const renderViewTitle = (
1795
+ options = { icon: '', img: '', text: '', assetFolder: '', 'ui-icons': '', dim, top, topText: '' },
1796
+ ) => {
1797
+ if (options.dim === undefined) options.dim = 30;
1786
1798
  const { img, text, icon, dim, top } = options;
1787
1799
  if (!img && !options['ui-icon']) return html`<span class="view-title-icon">${icon}</span> ${text}`;
1788
1800
  return html`<img
1789
1801
  class="abs img-btn-square-view-title"
1790
1802
  style="${renderCssAttr({
1791
- style: { width: `${dim}px`, height: `${dim}px`, top: top !== undefined ? `${top}px` : `-${dim / 2}px` },
1803
+ style: {
1804
+ width: `${dim}px`,
1805
+ height: `${dim}px`,
1806
+ top: top !== undefined ? `${top}px !important` : undefined,
1807
+ },
1792
1808
  })}"
1793
1809
  src="${options['ui-icon']
1794
1810
  ? `${getProxyPath()}assets/${options.assetFolder ? options.assetFolder : 'ui-icons'}/${options['ui-icon']}`
1795
1811
  : img}"
1796
1812
  />
1797
- <div class="in text-btn-square-view-title" style="${renderCssAttr({ style: { 'padding-left': `${dim}px` } })}">
1813
+ <div
1814
+ class="in text-btn-square-view-title"
1815
+ style="${renderCssAttr({
1816
+ style: {
1817
+ // 'padding-left': `${20 + dim}px`,
1818
+ ...(options.topText !== undefined ? { top: options.topText + 'px !important' } : {}),
1819
+ },
1820
+ })}"
1821
+ >
1798
1822
  ${text}
1799
1823
  </div>`;
1800
1824
  };
@@ -26,6 +26,7 @@ const Panel = {
26
26
  idPanel: '',
27
27
  parentIdModal: '',
28
28
  scrollClassContainer: '',
29
+ htmlFormHeader: async () => '',
29
30
  formData: [],
30
31
  data: [],
31
32
  originData: () => [],
@@ -244,12 +245,13 @@ const Panel = {
244
245
 
245
246
  let render = '';
246
247
  let renderForm = html` <div class="in modal stq" style="top: 0px; z-index: 1; padding-bottom: 5px">
247
- ${await BtnIcon.Render({
248
- class: `section-mp btn-custom btn-${idPanel}-close`,
249
- label: html`<i class="fa-solid fa-xmark"></i> ${Translate.Render('close')}`,
250
- type: 'button',
251
- })}
252
- </div>`;
248
+ ${await BtnIcon.Render({
249
+ class: `section-mp btn-custom btn-${idPanel}-close`,
250
+ label: html`<i class="fa-solid fa-xmark"></i> ${Translate.Render('close')}`,
251
+ type: 'button',
252
+ })}
253
+ </div>
254
+ ${options?.htmlFormHeader ? await options.htmlFormHeader() : ''}`;
253
255
 
254
256
  for (const modelData of formData) {
255
257
  if (modelData.disableRender) continue;
@@ -29,6 +29,8 @@ const PanelForm = {
29
29
  Elements: {},
30
30
  parentIdModal: undefined,
31
31
  route: 'home',
32
+ htmlFormHeader: async () => '',
33
+ firsUpdateEvent: async () => {},
32
34
  },
33
35
  ) {
34
36
  const { idPanel, heightTopBar, heightBottomBar, defaultUrlImage, Elements } = options;
@@ -99,6 +101,7 @@ const PanelForm = {
99
101
  heightTopBar,
100
102
  heightBottomBar,
101
103
  data,
104
+ htmlFormHeader: options.htmlFormHeader,
102
105
  parentIdModal: options.parentIdModal,
103
106
  originData: () => PanelForm.Data[idPanel].originData,
104
107
  filesData: () => PanelForm.Data[idPanel].filesData,
@@ -421,8 +424,16 @@ const PanelForm = {
421
424
  ssr: true,
422
425
  })),
423
426
  });
424
-
427
+ let delayBlock = false;
428
+ let firsUpdateEvent = false;
425
429
  this.Data[idPanel].updatePanel = async () => {
430
+ if (delayBlock) return;
431
+ else {
432
+ delayBlock = true;
433
+ setTimeout(() => {
434
+ delayBlock = false;
435
+ }, 500);
436
+ }
426
437
  const cid = getQueryParams().cid ? getQueryParams().cid : '';
427
438
  if (options.route === 'home') Modal.homeCid = newInstance(cid);
428
439
  htmls(`.${options.parentIdModal ? 'html-' + options.parentIdModal : 'main-body'}`, await renderSrrPanelData());
@@ -431,23 +442,28 @@ const PanelForm = {
431
442
  `.${options.parentIdModal ? 'html-' + options.parentIdModal : 'main-body'}`,
432
443
  await panelRender({ data: this.Data[idPanel].data }),
433
444
  );
445
+ if (!firsUpdateEvent && options.firsUpdateEvent) {
446
+ firsUpdateEvent = true;
447
+ await options.firsUpdateEvent();
448
+ }
434
449
  };
435
450
  if (options.route)
436
451
  listenQueryPathInstance({
437
452
  id: options.parentIdModal ? 'html-' + options.parentIdModal : 'main-body',
438
453
  routeId: options.route,
439
454
  event: async (path) => {
440
- if (!PanelForm.Data[idPanel].sessionIn) await this.Data[idPanel].updatePanel();
455
+ // if (!PanelForm.Data[idPanel].sessionIn)
456
+ await this.Data[idPanel].updatePanel();
441
457
  },
442
458
  });
443
459
 
444
460
  // if (options.route === 'home') setTimeout(this.Data[idPanel].updatePanel);
445
461
  setTimeout(() => {
446
- if (
447
- options.route !== 'home' &&
448
- (!PanelForm.Data[idPanel].originData || PanelForm.Data[idPanel].originData.length === 0)
449
- )
450
- this.Data[idPanel].updatePanel();
462
+ // if (
463
+ // options.route !== 'home' &&
464
+ // (!PanelForm.Data[idPanel].originData || PanelForm.Data[idPanel].originData.length === 0)
465
+ // )
466
+ this.Data[idPanel].updatePanel();
451
467
  });
452
468
 
453
469
  if (options.parentIdModal) {
@@ -4,13 +4,24 @@ import { getProxyPath } from '../../components/core/VanillaJs.js';
4
4
 
5
5
  const logger = loggerFactory(import.meta);
6
6
 
7
+ logger.info('Load service');
8
+
9
+ const endpoint = 'core';
10
+
7
11
  // https://developer.mozilla.org/en-US/docs/Web/API/AbortController
8
- const getBaseHost = () => location.host;
12
+ const getBaseHost = () => (window.renderPayload?.apiBaseHost ? window.renderPayload.apiBaseHost : location.host);
9
13
 
10
- const getApiBasePath = () => `${getProxyPath()}api/`;
14
+ const getApiBasePath = (options) =>
15
+ `${
16
+ options?.proxyPath
17
+ ? `/${options.proxyPath}/`
18
+ : window.renderPayload?.apiBaseProxyPath
19
+ ? window.renderPayload.apiBaseProxyPath
20
+ : getProxyPath()
21
+ }${window.renderPayload?.apiBasePath ? window.renderPayload.apiBasePath : 'api'}/`;
11
22
 
12
- const getApiBaseUrl = (options = { id: '', endpoint: '' }) =>
13
- `${location.protocol}//${getBaseHost()}${getApiBasePath()}${options?.endpoint ? options.endpoint : ''}${
23
+ const getApiBaseUrl = (options = { id: '', endpoint: '', proxyPath: '' }) =>
24
+ `${location.protocol}//${getBaseHost()}${getApiBasePath(options)}${options?.endpoint ? options.endpoint : ''}${
14
25
  options?.id ? `/${options.id}` : ''
15
26
  }`;
16
27
 
@@ -38,11 +49,6 @@ const payloadFactory = (body) => {
38
49
  return JSON.stringify(body);
39
50
  };
40
51
 
41
- logger.info('Load service');
42
-
43
- const endpoint = 'core';
44
- const _VERSION = window._VERSION;
45
-
46
52
  const CoreService = {
47
53
  getRaw: (options = { url: '' }) =>
48
54
  new Promise((resolve, reject) =>
@@ -159,7 +165,6 @@ const CoreService = {
159
165
  const ApiBase = getApiBaseUrl;
160
166
 
161
167
  export {
162
- _VERSION,
163
168
  CoreService,
164
169
  headersFactory,
165
170
  payloadFactory,
@@ -1,4 +1,4 @@
1
- SrrComponent = ({ title, ssrPath, buildId, ssrHeadComponents, ssrBodyComponents }) => html`
1
+ SrrComponent = ({ title, ssrPath, buildId, ssrHeadComponents, ssrBodyComponents, renderPayload, renderApi }) => html`
2
2
  <!DOCTYPE html>
3
3
  <html dir="ltr" lang="en">
4
4
  <head>
@@ -6,6 +6,9 @@ SrrComponent = ({ title, ssrPath, buildId, ssrHeadComponents, ssrBodyComponents
6
6
  <link rel="icon" type="image/x-icon" href="${ssrPath}favicon.ico" />
7
7
  <meta charset="UTF-8" />
8
8
  <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
9
+ <script>
10
+ window.renderPayload = ${renderApi.JSONweb(renderPayload)};
11
+ </script>
9
12
  ${ssrHeadComponents}
10
13
  </head>
11
14
  <body>
@@ -70,7 +70,7 @@ const CacheControl = function ({ ttiLoadTimeLimit }) {
70
70
  setTimeout(window.cacheControlCallBack, ttiLoadTimeLimit); // 70s limit);
71
71
  };
72
72
 
73
- SrrComponent = ({ ttiLoadTimeLimit }) => {
73
+ SrrComponent = ({ ttiLoadTimeLimit, version }) => {
74
74
  const borderChar = (px, color, selectors) => {
75
75
  if (selectors) {
76
76
  return selectors
@@ -106,10 +106,9 @@ SrrComponent = ({ ttiLoadTimeLimit }) => {
106
106
  </style>
107
107
  ${borderChar(1, 'black', ['.clean-cache-container'])}
108
108
  <script>
109
- window._VERSION = '${npm_package_version}';
110
109
  const CacheControl = ${CacheControl};
111
110
  CacheControl({ ttiLoadTimeLimit: ${ttiLoadTimeLimit ? ttiLoadTimeLimit : 1000 * 70 * 1} });
112
111
  </script>
113
- <div class="clean-cache-container">${npm_package_version}</div>
112
+ <div class="clean-cache-container">${version}</div>
114
113
  `;
115
114
  };
@@ -1,6 +1,6 @@
1
- const PRE_CACHED_RESOURCES = [];
2
- const CACHE_NAME = 'app-cache';
3
- const PROXY_PATH = '/';
1
+ const PRE_CACHED_RESOURCES = self.renderPayload?.PRE_CACHED_RESOURCES ? self.renderPayload.PRE_CACHED_RESOURCES : [];
2
+ const CACHE_NAME = self.renderPayload?.CACHE_NAME ? self.renderPayload.CACHE_NAME : 'app-cache';
3
+ const PROXY_PATH = self.renderPayload?.PROXY_PATH ? self.renderPayload.PROXY_PATH : '/';
4
4
  self.addEventListener('install', (event) => {
5
5
  // Activate right away
6
6
  self.skipWaiting();
package/src/index.js CHANGED
@@ -9,6 +9,7 @@ import UnderpostCron from './cli/cron.js';
9
9
  import UnderpostDB from './cli/db.js';
10
10
  import UnderpostDeploy from './cli/deploy.js';
11
11
  import UnderpostRootEnv from './cli/env.js';
12
+ import UnderpostFileStorage from './cli/fs.js';
12
13
  import UnderpostImage from './cli/image.js';
13
14
  import UnderpostRepository from './cli/repository.js';
14
15
  import UnderpostScript from './cli/script.js';
@@ -27,7 +28,7 @@ class Underpost {
27
28
  * @type {String}
28
29
  * @memberof Underpost
29
30
  */
30
- static version = 'v2.8.532';
31
+ static version = 'v2.8.611';
31
32
  /**
32
33
  * Repository cli API
33
34
  * @static
@@ -98,6 +99,13 @@ class Underpost {
98
99
  * @memberof Underpost
99
100
  */
100
101
  static cron = UnderpostCron.API;
102
+ /**
103
+ * File Storage cli API
104
+ * @static
105
+ * @type {UnderpostFileStorage.API}
106
+ * @memberof UnderpostFileStorage
107
+ */
108
+ static fs = UnderpostFileStorage.API;
101
109
  }
102
110
 
103
111
  const up = Underpost;
@@ -9,7 +9,7 @@ dotenv.config();
9
9
  const logger = loggerFactory(import.meta);
10
10
 
11
11
  class BackUp {
12
- static callback = async function (deployList, options = { itc: false }) {
12
+ static callback = async function (deployList, options = { itc: false, git: false }) {
13
13
  if ((!deployList || deployList === 'dd') && fs.existsSync(`./engine-private/deploy/dd.router`))
14
14
  deployList = fs.readFileSync(`./engine-private/deploy/dd.router`, 'utf8');
15
15
 
@@ -26,7 +26,7 @@ class BackUp {
26
26
  if (!deployId) continue;
27
27
 
28
28
  if (!(options.itc === true)) {
29
- shellExec(`underpost db --export ${deployId}`);
29
+ shellExec(`node bin db ${options.git ? '--git ' : ''}--export ${deployId}`);
30
30
  continue;
31
31
  }
32
32
 
@@ -21,6 +21,7 @@ import swaggerAutoGen from 'swagger-autogen';
21
21
  import { SitemapStream, streamToPromise } from 'sitemap';
22
22
  import { Readable } from 'stream';
23
23
  import { buildIcons, buildTextImg, getBufferPngText } from './client-icons.js';
24
+ import Underpost from '../index.js';
24
25
 
25
26
  dotenv.config();
26
27
 
@@ -250,20 +251,6 @@ const buildClient = async (options = { liveClientBuildPaths: [], instances: [] }
250
251
  'services',
251
252
  baseHost,
252
253
  );
253
- if (module === 'core' && (process.env.NODE_ENV === 'production' || process.argv.includes('static'))) {
254
- if (apiBaseHost)
255
- jsSrc = jsSrc.replace(
256
- 'const getBaseHost = () => location.host;',
257
- `const getBaseHost = () => '${apiBaseHost}';`,
258
- );
259
- if (apiBaseProxyPath) {
260
- jsSrc = jsSrc.replace('${getProxyPath()}api/', `${apiBaseProxyPath}${process.env.BASE_API}/`);
261
- jsSrc = jsSrc.replace(
262
- "const getWsBasePath = () => (getProxyPath() !== '/' ? `${getProxyPath()}socket.io/` : undefined);",
263
- `const getWsBasePath = () => '${apiBaseProxyPath}socket.io/';`,
264
- );
265
- }
266
- }
267
254
  fs.writeFileSync(
268
255
  jsPublicPath,
269
256
  minifyBuild || process.env.NODE_ENV === 'production' ? UglifyJS.minify(jsSrc).code : jsSrc,
@@ -487,7 +474,13 @@ const buildClient = async (options = { liveClientBuildPaths: [], instances: [] }
487
474
  }
488
475
 
489
476
  default:
490
- ssrBodyComponents += SrrComponent({ ssrPath, host, path, ttiLoadTimeLimit });
477
+ ssrBodyComponents += SrrComponent({
478
+ ssrPath,
479
+ host,
480
+ path,
481
+ ttiLoadTimeLimit,
482
+ version: Underpost.version,
483
+ });
491
484
  break;
492
485
  }
493
486
  }
@@ -507,6 +500,15 @@ const buildClient = async (options = { liveClientBuildPaths: [], instances: [] }
507
500
  ssrPath,
508
501
  ssrHeadComponents,
509
502
  ssrBodyComponents,
503
+ renderPayload: {
504
+ apiBaseProxyPath,
505
+ apiBaseHost,
506
+ apiBasePath: process.env.BASE_API,
507
+ version: Underpost.version,
508
+ },
509
+ renderApi: {
510
+ JSONweb,
511
+ },
510
512
  });
511
513
 
512
514
  fs.writeFileSync(
@@ -707,6 +709,15 @@ root file where the route starts, such as index.js, app.js, routes.js, etc ... *
707
709
  ssrPath,
708
710
  ssrHeadComponents: '',
709
711
  ssrBodyComponents: SsrComponent(),
712
+ renderPayload: {
713
+ apiBaseProxyPath,
714
+ apiBaseHost,
715
+ apiBasePath: process.env.BASE_API,
716
+ version: Underpost.version,
717
+ },
718
+ renderApi: {
719
+ JSONweb,
720
+ },
710
721
  });
711
722
 
712
723
  const buildPath = `${
@@ -739,16 +750,14 @@ root file where the route starts, such as index.js, app.js, routes.js, etc ... *
739
750
  }
740
751
 
741
752
  {
742
- const PRE_CACHED_JSON = `PRE_CACHED_RESOURCES = ${JSONweb(uniqueArray(PRE_CACHED_RESOURCES))}`;
743
- const PROXY_PATH = `PROXY_PATH = '${path}'`;
753
+ const renderPayload = {
754
+ PRE_CACHED_RESOURCES: uniqueArray(PRE_CACHED_RESOURCES),
755
+ PROXY_PATH: path,
756
+ };
744
757
  fs.writeFileSync(
745
758
  `${rootClientPath}/sw.js`,
746
- fs
747
- .readFileSync(`${rootClientPath}/sw.js`, 'utf8')
748
- .replaceAll(`PRE_CACHED_RESOURCES = []`, PRE_CACHED_JSON)
749
- .replaceAll(`PRE_CACHED_RESOURCES=[]`, PRE_CACHED_JSON)
750
- .replaceAll(`PROXY_PATH = '/'`, PROXY_PATH)
751
- .replaceAll(`PROXY_PATH='/'`, PROXY_PATH),
759
+ `self.renderPayload = ${JSONweb(renderPayload)};
760
+ ${fs.readFileSync(`${rootClientPath}/sw.js`, 'utf8')}`,
752
761
  'utf8',
753
762
  );
754
763
  }
@@ -2,6 +2,7 @@
2
2
 
3
3
  import fs from 'fs-extra';
4
4
  import vm from 'node:vm';
5
+ import Underpost from '../index.js';
5
6
 
6
7
  const srcFormatted = (src) =>
7
8
  src
@@ -49,7 +50,7 @@ const viewFormatted = (src, dists, proxyPath, baseHost = '') => {
49
50
  };
50
51
 
51
52
  const ssrFactory = async (componentPath = `./src/client/ssr/Render.js`) => {
52
- const context = { SrrComponent: () => {}, npm_package_version: process.env.npm_package_version };
53
+ const context = { SrrComponent: () => {}, npm_package_version: Underpost.version };
53
54
  vm.createContext(context);
54
55
  vm.runInContext(await srcFormatted(fs.readFileSync(componentPath, 'utf8')), context);
55
56
  return context.SrrComponent;
@@ -996,7 +996,7 @@ const Cmd = {
996
996
  cron: (deployList, jobList, name, expression, options) =>
997
997
  `pm2 start ./bin/index.js --no-autorestart --instances 1 --cron "${expression}" --name ${name} -- cron ${
998
998
  options?.itc ? `--itc ` : ''
999
- }${deployList} ${jobList}`,
999
+ }${options?.git ? `--git ` : ''}${deployList} ${jobList}`,
1000
1000
  };
1001
1001
 
1002
1002
  const fixDependencies = async () => {
package/src/server/dns.js CHANGED
@@ -12,8 +12,8 @@ const logger = loggerFactory(import.meta);
12
12
 
13
13
  class Dns {
14
14
  static callback = async function (deployList) {
15
- // NAT-VPS modem/router device configuration:
16
- // LAN --> [NAT-VPS] --> WAN
15
+ // Network topology configuration:
16
+ // LAN -> [NAT-VPS](modem/router device) -> WAN
17
17
  // enabled DMZ Host to proxy IP 80-443 (79-444) sometimes router block first port
18
18
  // disabled local red DHCP
19
19
  // verify inet ip proxy server address
@@ -19,7 +19,8 @@ import { DataBaseProvider } from '../db/DataBaseProvider.js';
19
19
  import { createPeerServer } from './peer.js';
20
20
  import { Lampp } from '../runtime/lampp/Lampp.js';
21
21
  import { getDeployId } from './conf.js';
22
- import { ssrFactory } from './client-formatted.js';
22
+ import { JSONweb, ssrFactory } from './client-formatted.js';
23
+ import Underpost from '../index.js';
23
24
 
24
25
  dotenv.config();
25
26
 
@@ -384,6 +385,13 @@ const buildRuntime = async () => {
384
385
  ssrPath,
385
386
  ssrHeadComponents: '',
386
387
  ssrBodyComponents: (await ssrFactory(`./src/client/ssr/body/404.js`))(),
388
+ renderPayload: {
389
+ apiBasePath: process.env.BASE_API,
390
+ version: Underpost.version,
391
+ },
392
+ renderApi: {
393
+ JSONweb,
394
+ },
387
395
  });
388
396
  const path404 = `${directory ? directory : `${getRootDirectory()}${rootHostPath}`}/404/index.html`;
389
397
  const page404 = fs.existsSync(path404) ? `${path === '/' ? '' : path}/404` : undefined;
@@ -400,6 +408,13 @@ const buildRuntime = async () => {
400
408
  ssrPath,
401
409
  ssrHeadComponents: '',
402
410
  ssrBodyComponents: (await ssrFactory(`./src/client/ssr/body/500.js`))(),
411
+ renderPayload: {
412
+ apiBasePath: process.env.BASE_API,
413
+ version: Underpost.version,
414
+ },
415
+ renderApi: {
416
+ JSONweb,
417
+ },
403
418
  });
404
419
  const path500 = `${directory ? directory : `${getRootDirectory()}${rootHostPath}`}/500/index.html`;
405
420
  const page500 = fs.existsSync(path500) ? `${path === '/' ? '' : path}/500` : undefined;
@@ -1,17 +0,0 @@
1
- ---
2
- apiVersion: v1
3
- kind: Service
4
- metadata:
5
- name: service-valkey
6
- namespace: default
7
- spec:
8
- ports:
9
- - port: 6379
10
- targetPort: 6379
11
- selector:
12
- app: service-valkey
13
- ipFamilyPolicy: PreferDualStack
14
- ipFamilies:
15
- - IPv4
16
- # - IPv6
17
- type: ClusterIP
@@ -1,39 +0,0 @@
1
- ---
2
- apiVersion: apps/v1
3
- kind: StatefulSet
4
- metadata:
5
- name: service-valkey
6
- namespace: default
7
- spec:
8
- serviceName: service-valkey
9
- replicas: 1
10
- selector:
11
- matchLabels:
12
- app: service-valkey
13
- template:
14
- metadata:
15
- labels:
16
- app: service-valkey
17
- spec:
18
- containers:
19
- - name: service-valkey
20
- image: docker.io/valkey/valkey:latest
21
- env:
22
- - name: TZ
23
- value: Europe/Zurich
24
- ports:
25
- - containerPort: 6379
26
- startupProbe:
27
- tcpSocket:
28
- port: 6379
29
- failureThreshold: 30
30
- periodSeconds: 5
31
- timeoutSeconds: 5
32
- livenessProbe:
33
- tcpSocket:
34
- port: 6379
35
- failureThreshold: 2
36
- periodSeconds: 30
37
- timeoutSeconds: 5
38
- restartPolicy: Always
39
- automountServiceAccountToken: false