underpost 2.8.65 → 2.8.71

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 (44) hide show
  1. package/.vscode/extensions.json +3 -2
  2. package/.vscode/settings.json +2 -0
  3. package/CHANGELOG.md +24 -4
  4. package/README.md +39 -2
  5. package/bin/deploy.js +1351 -145
  6. package/bin/file.js +8 -0
  7. package/bin/index.js +1 -240
  8. package/cli.md +451 -0
  9. package/docker-compose.yml +1 -1
  10. package/jsdoc.json +1 -1
  11. package/manifests/calico-custom-resources.yaml +25 -0
  12. package/manifests/deployment/adminer/deployment.yaml +32 -0
  13. package/manifests/deployment/adminer/kustomization.yaml +7 -0
  14. package/manifests/deployment/adminer/service.yaml +13 -0
  15. package/manifests/deployment/fastapi/backend-deployment.yml +120 -0
  16. package/manifests/deployment/fastapi/backend-service.yml +19 -0
  17. package/manifests/deployment/fastapi/frontend-deployment.yml +54 -0
  18. package/manifests/deployment/fastapi/frontend-service.yml +15 -0
  19. package/manifests/deployment/fastapi/initial_data.sh +56 -0
  20. package/manifests/deployment/kafka/deployment.yaml +69 -0
  21. package/manifests/kubeadm-calico-config.yaml +119 -0
  22. package/manifests/mongodb-4.4/service-deployment.yaml +1 -1
  23. package/manifests/postgresql/configmap.yaml +9 -0
  24. package/manifests/postgresql/kustomization.yaml +10 -0
  25. package/manifests/postgresql/pv.yaml +15 -0
  26. package/manifests/postgresql/pvc.yaml +13 -0
  27. package/manifests/postgresql/service.yaml +10 -0
  28. package/manifests/postgresql/statefulset.yaml +37 -0
  29. package/manifests/valkey/statefulset.yaml +6 -4
  30. package/package.json +2 -1
  31. package/src/cli/cluster.js +163 -18
  32. package/src/cli/deploy.js +68 -8
  33. package/src/cli/fs.js +14 -3
  34. package/src/cli/image.js +1 -1
  35. package/src/cli/index.js +312 -0
  36. package/src/cli/monitor.js +93 -39
  37. package/src/client/components/core/JoyStick.js +2 -2
  38. package/src/client/components/core/Modal.js +1 -0
  39. package/src/index.js +1 -1
  40. package/src/server/client-build.js +13 -0
  41. package/src/server/conf.js +5 -1
  42. package/src/server/dns.js +47 -17
  43. package/src/server/runtime.js +2 -0
  44. package/src/server/start.js +0 -1
@@ -2,17 +2,18 @@
2
2
  "recommendations": [
3
3
  "antiantisepticeye.vscode-color-picker",
4
4
  "bashmish.es6-string-css",
5
+ "codeium.codeium",
5
6
  "eamodio.gitlens",
6
7
  "esbenp.prettier-vscode",
7
8
  "foxundermoon.shell-format",
8
9
  "github.vscode-github-actions",
9
- "mintlify.document",
10
+ "golang.go",
11
+ "google.geminicodeassist",
10
12
  "ms-python.black-formatter",
11
13
  "ms-python.debugpy",
12
14
  "ms-python.python",
13
15
  "ms-python.vscode-pylance",
14
16
  "streetsidesoftware.code-spell-checker",
15
- "tabnine.tabnine-vscode",
16
17
  "tobermory.es6-string-html"
17
18
  ]
18
19
  }
@@ -10,6 +10,7 @@
10
10
  "editor.defaultFormatter": "ms-python.python"
11
11
  },
12
12
  "cSpell.words": [
13
+ "adminer",
13
14
  "ANAME",
14
15
  "browserconfig",
15
16
  "Bymyelectrics",
@@ -25,6 +26,7 @@
25
26
  "cyberiaonline",
26
27
  "dbname",
27
28
  "dists",
29
+ "DNSSEC",
28
30
  "DOGMADUAL",
29
31
  "dondominio",
30
32
  "dont",
package/CHANGELOG.md CHANGED
@@ -4,13 +4,33 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- #### [v2.8.521](https://github.com/underpostnet/engine/compare/v2.8.51...v2.8.521)
7
+ #### [v2.8.646](https://github.com/underpostnet/engine/compare/v2.8.532...v2.8.646)
8
+
9
+ > 28 March 2025
10
+
11
+ - refactor(engine-core): 📦 start deploy refactor [`4c4ebdb`](https://github.com/underpostnet/engine/commit/4c4ebdb8ebd57b77420451cc8a1022c3d63444b1)
12
+ - refactor(engine-core): 📦 monitor and image build logic [`fd8f7ee`](https://github.com/underpostnet/engine/commit/fd8f7eeed054d3c591961e03c3a15029a7dfb380)
13
+ - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`25e4097`](https://github.com/underpostnet/engine/commit/25e4097a9bde35ee7d0b5e5c2fb9546e80f50aee)
14
+
15
+ #### [v2.8.532](https://github.com/underpostnet/engine/compare/v2.8.521...v2.8.532)
16
+
17
+ > 6 March 2025
18
+
19
+ - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`09b2e9a`](https://github.com/underpostnet/engine/commit/09b2e9a5e16092415f553566643d70e5ae81951f)
20
+ - refactor(cli): 📦 it script methods [`8a16e17`](https://github.com/underpostnet/engine/commit/8a16e17db6d3b70198a6d435624572d8807feb46)
21
+ - feat(mongo): ✨ advance support mongo 4.4 [`2bb5bf9`](https://github.com/underpostnet/engine/commit/2bb5bf9f32162207f01a6a57effb514ae36e9ebc)
22
+
23
+ #### [v2.8.521](https://github.com/underpostnet/engine/compare/v2.8.56...v2.8.521)
8
24
 
9
25
  > 4 March 2025
10
26
 
11
- - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`5878342`](https://github.com/underpostnet/engine/commit/587834206f07a508b3e12ff5b5727c5979c06499)
12
- - ci(package-pwa-microservices-template): ⚙️ update version 2.8.521 [`5fada73`](https://github.com/underpostnet/engine/commit/5fada73abf960567f4ecdc01062a987f4d7b4e79)
13
- - fix(cli): 🐛 run prod img [`94743ef`](https://github.com/underpostnet/engine/commit/94743efe2cf214f0dbcf4db9f0b83ecf50b396f5)
27
+ #### [v2.8.56](https://github.com/underpostnet/engine/compare/v2.8.51...v2.8.56)
28
+
29
+ > 11 March 2025
30
+
31
+ - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`2d03419`](https://github.com/underpostnet/engine/commit/2d034191f73adad4091e25a2d01e3fb3df5e697a)
32
+ - revert(remove cyberia assets): 🗑 Reverts a previous commit [`b7dc5bd`](https://github.com/underpostnet/engine/commit/b7dc5bd5f02d601cac04ffd699c704667cb9c22b)
33
+ - feat(cyberia-cli): ✨ media generator adbvance [`61bbdb3`](https://github.com/underpostnet/engine/commit/61bbdb32b2a99cf54af9f69640e7aa15066f0f7d)
14
34
 
15
35
  #### [v2.8.51](https://github.com/underpostnet/engine/compare/v2.8.46...v2.8.51)
16
36
 
package/README.md CHANGED
@@ -38,7 +38,7 @@ Develop, build, deploy, test, monitor, and manage multiple runtime applications
38
38
  <!-- https://kapasia-dev-ed.my.site.com/Badges4Me/s/ -->
39
39
  <!-- https://simpleicons.org/ -->
40
40
 
41
- #### Create a new project
41
+ ## Create a new project
42
42
 
43
43
  ```bash
44
44
  npm install -g underpost
@@ -50,7 +50,7 @@ underpost new app-name
50
50
 
51
51
  After template installation, the server will be running on [http://localhost:4001](http://localhost:4001)
52
52
 
53
- #### Usage
53
+ ## Usage
54
54
 
55
55
  ```bash
56
56
  cd app-name
@@ -67,3 +67,40 @@ Run dev client server
67
67
  ```bash
68
68
  npm run dev
69
69
  ```
70
+ <!-- -->
71
+ ## underpost ci/cd cli v2.8.71
72
+
73
+ ### Usage: `underpost [options] [command]`
74
+ ```
75
+ Options:
76
+ -V, --version output the version number
77
+ -h, --help display help for command
78
+
79
+ Commands:
80
+ new <app-name> Create a new project
81
+ start [options] <deploy-id> [env] Start up server, build pipelines, or services
82
+ clone [options] <uri> Clone github repository
83
+ pull <path> <uri> Pull github repository
84
+ cmt [options] <path> <commit-type> [module-tag] [message] Commit github repository
85
+ push [options] <path> <uri> Push github repository
86
+ env <deploy-id> [env] Set environment variables files and conf related to <deploy-id>
87
+ config <operator> [key] [value] Manage configuration, operators
88
+ root Get npm root path
89
+ cluster [options] [pod-name] Manage cluster, for default initialization base kind cluster
90
+ deploy [options] <deploy-list> [env] Manage deployment, for default deploy development pods
91
+ secret [options] <platform> Manage secrets
92
+ dockerfile-image-build [options] Build image from Dockerfile
93
+ dockerfile-pull-base-images Pull underpost dockerfile images requirements
94
+ install Fast import underpost npm dependencies
95
+ db [options] <deploy-list> Manage databases
96
+ script [options] <operator> <script-name> [script-value] Supports a number of built-in underpost global scripts and their preset life cycle events as well as arbitrary scripts
97
+ cron [options] [deploy-list] [job-list] Cron jobs management
98
+ fs [options] [path] File storage management, for default upload file
99
+ test [options] [deploy-list] Manage Test, for default run current underpost default test
100
+ monitor [options] <deploy-id> [env] Monitor health server management
101
+ help [command] display help for command
102
+
103
+ ```
104
+
105
+ <a target="_top" href="https://github.com/underpostnet/pwa-microservices-template/blob/master/cli.md">See complete CLI Docs here.</a>
106
+