underpost 2.6.3 → 2.7.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.
- package/.dockerignore +13 -13
- package/.env.development +7 -7
- package/.env.production +7 -7
- package/.env.test +7 -7
- package/.github/workflows/publish.yml +26 -0
- package/.nycrc +9 -9
- package/.prettierignore +12 -12
- package/.prettierrc +9 -9
- package/.vscode/extensions.json +72 -72
- package/.vscode/settings.json +100 -99
- package/AUTHORS.md +10 -0
- package/CHANGELOG.md +91 -0
- package/Dockerfile +89 -89
- package/LICENSE +21 -21
- package/README.md +96 -96
- package/bin/db.js +172 -119
- package/bin/deploy.js +582 -626
- package/bin/dns.js +1 -1
- package/bin/file.js +92 -92
- package/bin/index.js +53 -34
- package/bin/install.js +398 -357
- package/bin/shortcut.js +44 -44
- package/bin/ssl.js +65 -61
- package/bin/util.js +182 -182
- package/bin/vs.js +35 -35
- package/conf.js +251 -249
- package/docker-compose.yml +67 -67
- package/jsconfig.json +7 -7
- package/jsdoc.json +32 -32
- package/nodemon.json +6 -6
- package/package.json +137 -128
- package/prometheus.yml +36 -36
- package/setup.sh +24 -24
- package/src/api/core/core.controller.js +69 -69
- package/src/api/core/core.model.js +11 -11
- package/src/api/core/core.router.js +23 -23
- package/src/api/core/core.service.js +29 -29
- package/src/api/crypto/crypto.controller.js +51 -51
- package/src/api/crypto/crypto.model.js +23 -23
- package/src/api/crypto/crypto.router.js +20 -20
- package/src/api/crypto/crypto.service.js +64 -64
- package/src/api/default/default.controller.js +69 -69
- package/src/api/default/default.model.js +20 -20
- package/src/api/default/default.router.js +23 -23
- package/src/api/default/default.service.js +31 -31
- package/src/api/file/file.controller.js +53 -51
- package/src/api/file/file.model.js +19 -19
- package/src/api/file/file.router.js +21 -20
- package/src/api/file/file.service.js +76 -70
- package/src/api/instance/instance.controller.js +69 -69
- package/src/api/instance/instance.model.js +36 -36
- package/src/api/instance/instance.router.js +33 -33
- package/src/api/instance/instance.service.js +48 -48
- package/src/api/test/test.controller.js +59 -59
- package/src/api/test/test.model.js +14 -14
- package/src/api/test/test.router.js +21 -21
- package/src/api/test/test.service.js +35 -35
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -70
- package/src/api/user/user.model.js +65 -65
- package/src/api/user/user.router.js +345 -345
- package/src/api/user/user.service.js +479 -479
- package/src/api.js +23 -23
- package/src/client/Default.index.js +40 -40
- package/src/client/components/core/Account.js +290 -290
- package/src/client/components/core/AgGrid.js +160 -160
- package/src/client/components/core/Auth.js +19 -19
- package/src/client/components/core/Badge.js +32 -32
- package/src/client/components/core/BlockChain.js +41 -41
- package/src/client/components/core/Blog.js +9 -9
- package/src/client/components/core/BtnIcon.js +101 -94
- package/src/client/components/core/CalendarCore.js +458 -319
- package/src/client/components/core/Chat.js +64 -64
- package/src/client/components/core/ColorPalette.js +5267 -5267
- package/src/client/components/core/CommonJs.js +735 -732
- package/src/client/components/core/Content.js +193 -49
- package/src/client/components/core/Css.js +1064 -1027
- package/src/client/components/core/CssCore.js +817 -796
- package/src/client/components/core/D3Chart.js +44 -44
- package/src/client/components/core/Docs.js +229 -229
- package/src/client/components/core/DropDown.js +164 -164
- package/src/client/components/core/EventsUI.js +46 -54
- package/src/client/components/core/FileExplorer.js +699 -624
- package/src/client/components/core/FullScreen.js +45 -45
- package/src/client/components/core/Input.js +346 -259
- package/src/client/components/core/JoyStick.js +77 -77
- package/src/client/components/core/Keyboard.js +73 -73
- package/src/client/components/core/LoadingAnimation.js +179 -157
- package/src/client/components/core/LogIn.js +187 -181
- package/src/client/components/core/LogOut.js +58 -52
- package/src/client/components/core/Logger.js +26 -26
- package/src/client/components/core/Modal.js +1612 -1596
- package/src/client/components/core/NotificationManager.js +84 -84
- package/src/client/components/core/Panel.js +613 -413
- package/src/client/components/core/PanelForm.js +468 -0
- package/src/client/components/core/Polyhedron.js +162 -162
- package/src/client/components/core/Recover.js +204 -204
- package/src/client/components/core/Responsive.js +53 -53
- package/src/client/components/core/RichText.js +51 -27
- package/src/client/components/core/Router.js +76 -77
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -125
- package/src/client/components/core/SocketIo.js +72 -72
- package/src/client/components/core/Stream.js +113 -113
- package/src/client/components/core/ToggleSwitch.js +87 -87
- package/src/client/components/core/ToolTip.js +26 -26
- package/src/client/components/core/Translate.js +437 -408
- package/src/client/components/core/Validator.js +100 -100
- package/src/client/components/core/VanillaJs.js +460 -457
- package/src/client/components/core/Wallet.js +106 -106
- package/src/client/components/core/Webhook.js +25 -25
- package/src/client/components/core/Worker.js +272 -272
- package/src/client/components/default/CommonDefault.js +29 -29
- package/src/client/components/default/CssDefault.js +13 -13
- package/src/client/components/default/ElementsDefault.js +38 -38
- package/src/client/components/default/LogInDefault.js +41 -41
- package/src/client/components/default/LogOutDefault.js +28 -28
- package/src/client/components/default/MenuDefault.js +389 -389
- package/src/client/components/default/RoutesDefault.js +48 -48
- package/src/client/components/default/SettingsDefault.js +16 -16
- package/src/client/components/default/SignUpDefault.js +9 -9
- package/src/client/components/default/SocketIoDefault.js +54 -54
- package/src/client/components/default/TranslateDefault.js +7 -7
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +11 -11
- package/src/client/public/default/manifest.webmanifest +68 -68
- package/src/client/public/default/plantuml/client-conf.svg +1 -0
- package/src/client/public/default/plantuml/client-schema.svg +1 -0
- package/src/client/public/default/plantuml/cron-conf.svg +1 -0
- package/src/client/public/default/plantuml/cron-schema.svg +1 -0
- package/src/client/public/default/plantuml/server-conf.svg +1 -0
- package/src/client/public/default/plantuml/server-schema.svg +1 -0
- package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
- package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
- package/src/client/public/default/sitemap +147 -147
- package/src/client/public/default/yandex-browser-manifest.json +8 -8
- package/src/client/public/doc/sitemap +147 -147
- package/src/client/public/test/sitemap +147 -147
- package/src/client/services/core/core.service.js +170 -152
- package/src/client/services/crypto/crypto.service.js +70 -70
- package/src/client/services/default/default.management.js +345 -345
- package/src/client/services/default/default.service.js +89 -89
- package/src/client/services/file/file.service.js +70 -70
- package/src/client/services/instance/instance.management.js +74 -74
- package/src/client/services/instance/instance.service.js +89 -89
- package/src/client/services/test/test.service.js +70 -70
- package/src/client/services/user/user.management.js +50 -50
- package/src/client/services/user/user.service.js +89 -89
- package/src/client/ssr/Render.js +16 -16
- package/src/client/ssr/body-components/CacheControl.js +114 -113
- package/src/client/ssr/body-components/DefaultSplashScreen.js +79 -79
- package/src/client/ssr/email-components/DefaultRecoverEmail.js +21 -21
- package/src/client/ssr/email-components/DefaultVerifyEmail.js +17 -17
- package/src/client/ssr/head-components/Css.js +241 -241
- package/src/client/ssr/head-components/DefaultScripts.js +3 -3
- package/src/client/ssr/head-components/Microdata.js +11 -11
- package/src/client/ssr/head-components/Production.js +1 -1
- package/src/client/ssr/head-components/PwaDefault.js +59 -59
- package/src/client/ssr/head-components/Seo.js +14 -14
- package/src/client/sw/default.sw.js +201 -201
- package/src/client/sw/template.sw.js +84 -84
- package/src/client.build.js +22 -22
- package/src/client.dev.js +21 -21
- package/src/cron.js +25 -25
- package/src/db/DataBaseProvider.js +34 -34
- package/src/db/mariadb/MariaDB.js +33 -33
- package/src/db/mongo/MongooseDB.js +46 -46
- package/src/dns.js +22 -22
- package/src/index.js +42 -0
- package/src/mailer/EmailRender.js +69 -69
- package/src/mailer/MailerProvider.js +96 -96
- package/src/proxy.js +22 -22
- package/src/runtime/lampp/Lampp.js +69 -44
- package/src/runtime/nginx/Nginx.js +3 -3
- package/src/runtime/xampp/Xampp.js +49 -49
- package/src/server/auth.js +235 -204
- package/src/server/backup.js +101 -84
- package/src/server/client-build-live.js +72 -72
- package/src/server/client-build.js +705 -699
- package/src/server/client-dev-server.js +60 -58
- package/src/server/client-formatted.js +48 -48
- package/src/server/client-icons.js +149 -150
- package/src/server/conf.js +860 -611
- package/src/server/dns.js +98 -87
- package/src/server/downloader.js +42 -42
- package/src/server/logger.js +180 -135
- package/src/server/network.js +122 -122
- package/src/server/peer.js +33 -33
- package/src/server/process.js +66 -66
- package/src/server/prompt-optimizer.js +28 -0
- package/src/server/proxy.js +118 -118
- package/src/server/runtime.js +444 -393
- package/src/server/ssl.js +109 -107
- package/src/server.js +25 -25
- package/src/ws/IoInterface.js +45 -45
- package/src/ws/IoServer.js +39 -39
- package/src/ws/core/channels/core.ws.chat.js +23 -23
- package/src/ws/core/channels/core.ws.mailer.js +35 -35
- package/src/ws/core/channels/core.ws.stream.js +31 -31
- package/src/ws/core/core.ws.connection.js +28 -28
- package/src/ws/core/core.ws.emit.js +14 -14
- package/src/ws/core/core.ws.server.js +24 -24
- package/src/ws/core/management/core.ws.chat.js +8 -8
- package/src/ws/core/management/core.ws.mailer.js +16 -16
- package/src/ws/core/management/core.ws.stream.js +8 -8
- package/src/ws/default/channels/default.ws.main.js +16 -16
- package/src/ws/default/default.ws.connection.js +22 -22
- package/src/ws/default/default.ws.emit.js +14 -14
- package/src/ws/default/default.ws.server.js +20 -20
- package/src/ws/default/management/default.ws.main.js +8 -8
- package/startup.js +11 -11
- package/supervisord-openssh-server.conf +4 -4
- package/test/api.test.js +60 -60
- package/bin/help.js +0 -110
package/.dockerignore
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
/node_modules
|
|
2
|
-
/public
|
|
3
|
-
/engine-private
|
|
4
|
-
/conf
|
|
5
|
-
/tmp
|
|
6
|
-
/bkt
|
|
7
|
-
/logs
|
|
8
|
-
/build
|
|
9
|
-
/.env
|
|
10
|
-
/coverage
|
|
11
|
-
/prometheus_data
|
|
12
|
-
/grafana_data
|
|
13
|
-
.nyc_output
|
|
1
|
+
/node_modules
|
|
2
|
+
/public
|
|
3
|
+
/engine-private
|
|
4
|
+
/conf
|
|
5
|
+
/tmp
|
|
6
|
+
/bkt
|
|
7
|
+
/logs
|
|
8
|
+
/build
|
|
9
|
+
/.env
|
|
10
|
+
/coverage
|
|
11
|
+
/prometheus_data
|
|
12
|
+
/grafana_data
|
|
13
|
+
.nyc_output
|
|
14
14
|
.cache
|
package/.env.development
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
NODE_ENV=development
|
|
2
|
-
PORT=4000
|
|
3
|
-
JWT_SECRET=test
|
|
4
|
-
EXPIRE=168
|
|
5
|
-
PINATA_API_KEY=
|
|
6
|
-
PINATA_SECRET_API_KEY=
|
|
7
|
-
NODE_OPTIONS=--max-old-space-size=8192
|
|
1
|
+
NODE_ENV=development
|
|
2
|
+
PORT=4000
|
|
3
|
+
JWT_SECRET=test
|
|
4
|
+
EXPIRE=168
|
|
5
|
+
PINATA_API_KEY=
|
|
6
|
+
PINATA_SECRET_API_KEY=
|
|
7
|
+
NODE_OPTIONS=--max-old-space-size=8192
|
|
8
8
|
BASE_API=api
|
package/.env.production
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
NODE_ENV=production
|
|
2
|
-
PORT=3000
|
|
3
|
-
JWT_SECRET=test
|
|
4
|
-
EXPIRE=168
|
|
5
|
-
PINATA_API_KEY=
|
|
6
|
-
PINATA_SECRET_API_KEY=
|
|
7
|
-
NODE_OPTIONS=--max-old-space-size=8192
|
|
1
|
+
NODE_ENV=production
|
|
2
|
+
PORT=3000
|
|
3
|
+
JWT_SECRET=test
|
|
4
|
+
EXPIRE=168
|
|
5
|
+
PINATA_API_KEY=
|
|
6
|
+
PINATA_SECRET_API_KEY=
|
|
7
|
+
NODE_OPTIONS=--max-old-space-size=8192
|
|
8
8
|
BASE_API=api
|
package/.env.test
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
NODE_ENV=test
|
|
2
|
-
PORT=5000
|
|
3
|
-
JWT_SECRET=test
|
|
4
|
-
EXPIRE=168
|
|
5
|
-
PINATA_API_KEY=
|
|
6
|
-
PINATA_SECRET_API_KEY=
|
|
7
|
-
NODE_OPTIONS=--max-old-space-size=8192
|
|
1
|
+
NODE_ENV=test
|
|
2
|
+
PORT=5000
|
|
3
|
+
JWT_SECRET=test
|
|
4
|
+
EXPIRE=168
|
|
5
|
+
PINATA_API_KEY=
|
|
6
|
+
PINATA_SECRET_API_KEY=
|
|
7
|
+
NODE_OPTIONS=--max-old-space-size=8192
|
|
8
8
|
BASE_API=api
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: publish to npmjs
|
|
2
|
+
on:
|
|
3
|
+
release:
|
|
4
|
+
types: [released]
|
|
5
|
+
jobs:
|
|
6
|
+
build-and-publish:
|
|
7
|
+
# prevents this action from running on forks
|
|
8
|
+
if: github.repository == 'underpostnet/pwa-microservices-template'
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
id-token: write
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- uses: actions/setup-node@v4
|
|
16
|
+
with:
|
|
17
|
+
node-version: '21.x'
|
|
18
|
+
registry-url: 'https://registry.npmjs.org'
|
|
19
|
+
|
|
20
|
+
- name: Install Dependencies
|
|
21
|
+
run: npm install
|
|
22
|
+
|
|
23
|
+
- run: npm ci
|
|
24
|
+
- run: npm publish --provenance --access public
|
|
25
|
+
env:
|
|
26
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.nycrc
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"exclude": [],
|
|
3
|
-
"include": ["test"],
|
|
4
|
-
"output": "reports",
|
|
5
|
-
"reporter": ["html", "text", "lcov", "text-lcov", "cobertura"],
|
|
6
|
-
"sourceMap": true,
|
|
7
|
-
"instrument": true,
|
|
8
|
-
"all": true
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"exclude": [],
|
|
3
|
+
"include": ["test"],
|
|
4
|
+
"output": "reports",
|
|
5
|
+
"reporter": ["html", "text", "lcov", "text-lcov", "cobertura"],
|
|
6
|
+
"sourceMap": true,
|
|
7
|
+
"instrument": true,
|
|
8
|
+
"all": true
|
|
9
|
+
}
|
package/.prettierignore
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/node_modules
|
|
2
|
-
/public
|
|
3
|
-
/conf
|
|
4
|
-
/tmp
|
|
5
|
-
/bkt
|
|
6
|
-
/logs
|
|
7
|
-
/build
|
|
8
|
-
/.env
|
|
9
|
-
/coverage
|
|
10
|
-
/prometheus_data
|
|
11
|
-
/grafana_data
|
|
12
|
-
.nyc_output
|
|
1
|
+
/node_modules
|
|
2
|
+
/public
|
|
3
|
+
/conf
|
|
4
|
+
/tmp
|
|
5
|
+
/bkt
|
|
6
|
+
/logs
|
|
7
|
+
/build
|
|
8
|
+
/.env
|
|
9
|
+
/coverage
|
|
10
|
+
/prometheus_data
|
|
11
|
+
/grafana_data
|
|
12
|
+
.nyc_output
|
|
13
13
|
.cache
|
package/.prettierrc
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"printWidth": 120,
|
|
3
|
-
"singleQuote": true,
|
|
4
|
-
"useTabs": false,
|
|
5
|
-
"tabWidth": 2,
|
|
6
|
-
"semi": true,
|
|
7
|
-
"bracketSpacing": true,
|
|
8
|
-
"trailingComma": "all"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"printWidth": 120,
|
|
3
|
+
"singleQuote": true,
|
|
4
|
+
"useTabs": false,
|
|
5
|
+
"tabWidth": 2,
|
|
6
|
+
"semi": true,
|
|
7
|
+
"bracketSpacing": true,
|
|
8
|
+
"trailingComma": "all"
|
|
9
|
+
}
|
package/.vscode/extensions.json
CHANGED
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
{
|
|
2
|
-
"recommendations": [
|
|
3
|
-
"adpyke.vscode-sql-formatter",
|
|
4
|
-
"angular.ng-template",
|
|
5
|
-
"antiantisepticeye.vscode-color-picker",
|
|
6
|
-
"bashmish.es6-string-css",
|
|
7
|
-
"bierner.lit-html",
|
|
8
|
-
"bmewburn.vscode-intelephense-client",
|
|
9
|
-
"cschlosser.doxdocgen",
|
|
10
|
-
"danielehrhardt.ionic3-vs-ionview-snippets",
|
|
11
|
-
"dbaeumer.vscode-eslint",
|
|
12
|
-
"eamodio.gitlens",
|
|
13
|
-
"esbenp.prettier-vscode",
|
|
14
|
-
"fivethree.vscode-ionic-snippets",
|
|
15
|
-
"formulahendry.auto-rename-tag",
|
|
16
|
-
"golang.go",
|
|
17
|
-
"ipedrazas.kubernetes-snippets",
|
|
18
|
-
"jannisx11.batch-rename-extension",
|
|
19
|
-
"jeff-hykin.better-cpp-syntax",
|
|
20
|
-
"jinxdash.prettier-rust",
|
|
21
|
-
"johnpapa.vscode-peacock",
|
|
22
|
-
"juanblanco.solidity",
|
|
23
|
-
"julialang.language-julia",
|
|
24
|
-
"kevinrose.vsc-python-indent",
|
|
25
|
-
"mechatroner.rainbow-csv",
|
|
26
|
-
"mintlify.document",
|
|
27
|
-
"ms-azuretools.vscode-docker",
|
|
28
|
-
"ms-dotnettools.vscode-dotnet-runtime",
|
|
29
|
-
"ms-kubernetes-tools.vscode-kubernetes-tools",
|
|
30
|
-
"ms-python.black-formatter",
|
|
31
|
-
"ms-python.debugpy",
|
|
32
|
-
"ms-python.isort",
|
|
33
|
-
"ms-python.python",
|
|
34
|
-
"ms-python.vscode-pylance",
|
|
35
|
-
"ms-toolsai.jupyter",
|
|
36
|
-
"ms-toolsai.jupyter-keymap",
|
|
37
|
-
"ms-toolsai.jupyter-renderers",
|
|
38
|
-
"ms-toolsai.vscode-jupyter-cell-tags",
|
|
39
|
-
"ms-toolsai.vscode-jupyter-slideshow",
|
|
40
|
-
"ms-vscode-remote.remote-containers",
|
|
41
|
-
"ms-vscode-remote.remote-wsl",
|
|
42
|
-
"ms-vscode.cmake-tools",
|
|
43
|
-
"ms-vscode.cpptools",
|
|
44
|
-
"ms-vscode.cpptools-extension-pack",
|
|
45
|
-
"ms-vscode.cpptools-themes",
|
|
46
|
-
"ms-vscode.makefile-tools",
|
|
47
|
-
"msjsdiag.cordova-tools",
|
|
48
|
-
"nicolasvuillamy.vscode-groovy-lint",
|
|
49
|
-
"nucllear.vscode-extension-auto-import",
|
|
50
|
-
"pinkpotato.ionic-essentials",
|
|
51
|
-
"redhat.java",
|
|
52
|
-
"redhat.vscode-xml",
|
|
53
|
-
"redhat.vscode-yaml",
|
|
54
|
-
"rust-lang.rust-analyzer",
|
|
55
|
-
"steoates.autoimport",
|
|
56
|
-
"streetsidesoftware.code-spell-checker",
|
|
57
|
-
"tabnine.tabnine-vscode",
|
|
58
|
-
"tamasfe.even-better-toml",
|
|
59
|
-
"tobermory.es6-string-html",
|
|
60
|
-
"twxs.cmake",
|
|
61
|
-
"visualstudioexptteam.intellicode-api-usage-examples",
|
|
62
|
-
"visualstudioexptteam.vscodeintellicode",
|
|
63
|
-
"vscjava.vscode-gradle",
|
|
64
|
-
"vscjava.vscode-java-debug",
|
|
65
|
-
"vscjava.vscode-java-dependency",
|
|
66
|
-
"vscjava.vscode-java-pack",
|
|
67
|
-
"vscjava.vscode-java-test",
|
|
68
|
-
"vscjava.vscode-maven",
|
|
69
|
-
"vscode-icons-team.vscode-icons",
|
|
70
|
-
"xabikos.javascriptsnippets"
|
|
71
|
-
]
|
|
72
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"recommendations": [
|
|
3
|
+
"adpyke.vscode-sql-formatter",
|
|
4
|
+
"angular.ng-template",
|
|
5
|
+
"antiantisepticeye.vscode-color-picker",
|
|
6
|
+
"bashmish.es6-string-css",
|
|
7
|
+
"bierner.lit-html",
|
|
8
|
+
"bmewburn.vscode-intelephense-client",
|
|
9
|
+
"cschlosser.doxdocgen",
|
|
10
|
+
"danielehrhardt.ionic3-vs-ionview-snippets",
|
|
11
|
+
"dbaeumer.vscode-eslint",
|
|
12
|
+
"eamodio.gitlens",
|
|
13
|
+
"esbenp.prettier-vscode",
|
|
14
|
+
"fivethree.vscode-ionic-snippets",
|
|
15
|
+
"formulahendry.auto-rename-tag",
|
|
16
|
+
"golang.go",
|
|
17
|
+
"ipedrazas.kubernetes-snippets",
|
|
18
|
+
"jannisx11.batch-rename-extension",
|
|
19
|
+
"jeff-hykin.better-cpp-syntax",
|
|
20
|
+
"jinxdash.prettier-rust",
|
|
21
|
+
"johnpapa.vscode-peacock",
|
|
22
|
+
"juanblanco.solidity",
|
|
23
|
+
"julialang.language-julia",
|
|
24
|
+
"kevinrose.vsc-python-indent",
|
|
25
|
+
"mechatroner.rainbow-csv",
|
|
26
|
+
"mintlify.document",
|
|
27
|
+
"ms-azuretools.vscode-docker",
|
|
28
|
+
"ms-dotnettools.vscode-dotnet-runtime",
|
|
29
|
+
"ms-kubernetes-tools.vscode-kubernetes-tools",
|
|
30
|
+
"ms-python.black-formatter",
|
|
31
|
+
"ms-python.debugpy",
|
|
32
|
+
"ms-python.isort",
|
|
33
|
+
"ms-python.python",
|
|
34
|
+
"ms-python.vscode-pylance",
|
|
35
|
+
"ms-toolsai.jupyter",
|
|
36
|
+
"ms-toolsai.jupyter-keymap",
|
|
37
|
+
"ms-toolsai.jupyter-renderers",
|
|
38
|
+
"ms-toolsai.vscode-jupyter-cell-tags",
|
|
39
|
+
"ms-toolsai.vscode-jupyter-slideshow",
|
|
40
|
+
"ms-vscode-remote.remote-containers",
|
|
41
|
+
"ms-vscode-remote.remote-wsl",
|
|
42
|
+
"ms-vscode.cmake-tools",
|
|
43
|
+
"ms-vscode.cpptools",
|
|
44
|
+
"ms-vscode.cpptools-extension-pack",
|
|
45
|
+
"ms-vscode.cpptools-themes",
|
|
46
|
+
"ms-vscode.makefile-tools",
|
|
47
|
+
"msjsdiag.cordova-tools",
|
|
48
|
+
"nicolasvuillamy.vscode-groovy-lint",
|
|
49
|
+
"nucllear.vscode-extension-auto-import",
|
|
50
|
+
"pinkpotato.ionic-essentials",
|
|
51
|
+
"redhat.java",
|
|
52
|
+
"redhat.vscode-xml",
|
|
53
|
+
"redhat.vscode-yaml",
|
|
54
|
+
"rust-lang.rust-analyzer",
|
|
55
|
+
"steoates.autoimport",
|
|
56
|
+
"streetsidesoftware.code-spell-checker",
|
|
57
|
+
"tabnine.tabnine-vscode",
|
|
58
|
+
"tamasfe.even-better-toml",
|
|
59
|
+
"tobermory.es6-string-html",
|
|
60
|
+
"twxs.cmake",
|
|
61
|
+
"visualstudioexptteam.intellicode-api-usage-examples",
|
|
62
|
+
"visualstudioexptteam.vscodeintellicode",
|
|
63
|
+
"vscjava.vscode-gradle",
|
|
64
|
+
"vscjava.vscode-java-debug",
|
|
65
|
+
"vscjava.vscode-java-dependency",
|
|
66
|
+
"vscjava.vscode-java-pack",
|
|
67
|
+
"vscjava.vscode-java-test",
|
|
68
|
+
"vscjava.vscode-maven",
|
|
69
|
+
"vscode-icons-team.vscode-icons",
|
|
70
|
+
"xabikos.javascriptsnippets"
|
|
71
|
+
]
|
|
72
|
+
}
|
package/.vscode/settings.json
CHANGED
|
@@ -1,99 +1,100 @@
|
|
|
1
|
-
{
|
|
2
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
3
|
-
"editor.formatOnSave": true,
|
|
4
|
-
"explorer.compactFolders": false,
|
|
5
|
-
"javascript.preferences.importModuleSpecifierEnding": "js",
|
|
6
|
-
"[javascript]": {
|
|
7
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
8
|
-
},
|
|
9
|
-
"[python]": {
|
|
10
|
-
"editor.defaultFormatter": "ms-python.python"
|
|
11
|
-
},
|
|
12
|
-
"cSpell.words": [
|
|
13
|
-
"ANAME",
|
|
14
|
-
"browserconfig",
|
|
15
|
-
"certbot",
|
|
16
|
-
"certonly",
|
|
17
|
-
"changefreq",
|
|
18
|
-
"chebyshev",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"docwriter.
|
|
74
|
-
"docwriter.progress.
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
"**/.
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
//
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
//
|
|
86
|
-
//
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
3
|
+
"editor.formatOnSave": true,
|
|
4
|
+
"explorer.compactFolders": false,
|
|
5
|
+
"javascript.preferences.importModuleSpecifierEnding": "js",
|
|
6
|
+
"[javascript]": {
|
|
7
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
8
|
+
},
|
|
9
|
+
"[python]": {
|
|
10
|
+
"editor.defaultFormatter": "ms-python.python"
|
|
11
|
+
},
|
|
12
|
+
"cSpell.words": [
|
|
13
|
+
"ANAME",
|
|
14
|
+
"browserconfig",
|
|
15
|
+
"certbot",
|
|
16
|
+
"certonly",
|
|
17
|
+
"changefreq",
|
|
18
|
+
"chebyshev",
|
|
19
|
+
"Cids",
|
|
20
|
+
"Contracultura",
|
|
21
|
+
"cooldown",
|
|
22
|
+
"cryptokoyn",
|
|
23
|
+
"cyberia",
|
|
24
|
+
"cyberiaonline",
|
|
25
|
+
"dbname",
|
|
26
|
+
"dists",
|
|
27
|
+
"DOGMADUAL",
|
|
28
|
+
"dondominio",
|
|
29
|
+
"dont",
|
|
30
|
+
"fileupload",
|
|
31
|
+
"fontawesome",
|
|
32
|
+
"fortawesome",
|
|
33
|
+
"googlebot",
|
|
34
|
+
"Hexa",
|
|
35
|
+
"htdocs",
|
|
36
|
+
"htmls",
|
|
37
|
+
"inlt",
|
|
38
|
+
"ipfs",
|
|
39
|
+
"jsonld",
|
|
40
|
+
"lampp",
|
|
41
|
+
"loadingio",
|
|
42
|
+
"Longname",
|
|
43
|
+
"Microdata",
|
|
44
|
+
"minami",
|
|
45
|
+
"MMORPG",
|
|
46
|
+
"mysqldump",
|
|
47
|
+
"neodrag",
|
|
48
|
+
"nexodev",
|
|
49
|
+
"pathfinding",
|
|
50
|
+
"Pixi",
|
|
51
|
+
"plantuml",
|
|
52
|
+
"privkey",
|
|
53
|
+
"runas",
|
|
54
|
+
"Scatterplot",
|
|
55
|
+
"sortablejs",
|
|
56
|
+
"supervisord",
|
|
57
|
+
"underpost",
|
|
58
|
+
"Unequip",
|
|
59
|
+
"webroot",
|
|
60
|
+
"xampp",
|
|
61
|
+
"xfwd",
|
|
62
|
+
"youtu"
|
|
63
|
+
],
|
|
64
|
+
"[dockerfile]": {
|
|
65
|
+
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
|
|
66
|
+
},
|
|
67
|
+
"[php]": {
|
|
68
|
+
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
|
|
69
|
+
},
|
|
70
|
+
"[xml]": {
|
|
71
|
+
"editor.defaultFormatter": "redhat.vscode-xml"
|
|
72
|
+
},
|
|
73
|
+
"docwriter.style": "JSDoc",
|
|
74
|
+
"docwriter.progress.trackFunctions": false,
|
|
75
|
+
"docwriter.progress.trackMethods": false,
|
|
76
|
+
"files.exclude": {
|
|
77
|
+
"**/.git": true, // this is a default value
|
|
78
|
+
"**/.DS_Store": true, // this is a default value
|
|
79
|
+
|
|
80
|
+
"**/node_modules": true, // this excludes all folders
|
|
81
|
+
// named "node_modules" from
|
|
82
|
+
// the explore tree
|
|
83
|
+
|
|
84
|
+
// alternative version
|
|
85
|
+
"node_modules": true, // this excludes the folder
|
|
86
|
+
// only from the root of
|
|
87
|
+
// your workspace
|
|
88
|
+
"public": true,
|
|
89
|
+
"engine-private": true,
|
|
90
|
+
"conf": true,
|
|
91
|
+
"tmp": true,
|
|
92
|
+
"bkt": true,
|
|
93
|
+
"logs": true,
|
|
94
|
+
"build": true,
|
|
95
|
+
"coverage": true,
|
|
96
|
+
"prometheus_data": true,
|
|
97
|
+
"grafana_data": true,
|
|
98
|
+
".nyc_output": true
|
|
99
|
+
}
|
|
100
|
+
}
|
package/AUTHORS.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Authors
|
|
2
|
+
|
|
3
|
+
#### Ordered by first contribution.
|
|
4
|
+
|
|
5
|
+
- fcoverdugo ([fcoverdugoa@underpost.net](mailto:fcoverdugoa@underpost.net))
|
|
6
|
+
- underpost.net ([52893447+underpostnet@users.noreply.github.com](mailto:52893447+underpostnet@users.noreply.github.com))
|
|
7
|
+
- fcoverdugoa ([52893447+underpostnet@users.noreply.github.com](mailto:52893447+underpostnet@users.noreply.github.com))
|
|
8
|
+
- underpostnet ([fcoverdugoa@underpost.net](mailto:fcoverdugoa@underpost.net))
|
|
9
|
+
|
|
10
|
+
#### Generated by [underpost.net](https://underpost.net)
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
### Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
4
|
+
|
|
5
|
+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
|
+
|
|
7
|
+
#### [v2.6.3](https://github.com/underpostnet/engine/compare/v2.6.2...v2.6.3)
|
|
8
|
+
|
|
9
|
+
> 14 September 2024
|
|
10
|
+
|
|
11
|
+
- update version 2.6.3 [`85c585d`](https://github.com/underpostnet/engine/commit/85c585d1cce30de4389772605cf56e774e2b7d3c)
|
|
12
|
+
- update refactor docs and coverage [`b455016`](https://github.com/underpostnet/engine/commit/b455016f5f2b2bdc142aacb4dfd66ab890125662)
|
|
13
|
+
- update [`b8f01f2`](https://github.com/underpostnet/engine/commit/b8f01f258999c9ebc1173b0616f0f7b8f7171048)
|
|
14
|
+
|
|
15
|
+
#### [v2.6.2](https://github.com/underpostnet/engine/compare/v2.5.6...v2.6.2)
|
|
16
|
+
|
|
17
|
+
> 13 September 2024
|
|
18
|
+
|
|
19
|
+
- update version 2.6.2 [`0895afb`](https://github.com/underpostnet/engine/commit/0895afbde42dd5a573507ccfcb07c328648b4eb0)
|
|
20
|
+
- update [`344d303`](https://github.com/underpostnet/engine/commit/344d303702ebce22dff50d8c0f8d8d870a2860ee)
|
|
21
|
+
|
|
22
|
+
#### [v2.5.6](https://github.com/underpostnet/engine/compare/v2.5.2...v2.5.6)
|
|
23
|
+
|
|
24
|
+
> 13 September 2024
|
|
25
|
+
|
|
26
|
+
- update version 2.5.6 [`ca57b87`](https://github.com/underpostnet/engine/commit/ca57b87c56a544e7b7e53baa5a6e15415e16b99b)
|
|
27
|
+
- update [`eec4943`](https://github.com/underpostnet/engine/commit/eec49433f50b4dfa7b7bbff48891a60f5be25545)
|
|
28
|
+
- update [`5f0a6ac`](https://github.com/underpostnet/engine/commit/5f0a6aca1ae971bc42f654cf3f2bf7ace7fe613d)
|
|
29
|
+
|
|
30
|
+
#### [v2.5.2](https://github.com/underpostnet/engine/compare/v2.5.1...v2.5.2)
|
|
31
|
+
|
|
32
|
+
> 12 September 2024
|
|
33
|
+
|
|
34
|
+
- update dependebot security [`1289b96`](https://github.com/underpostnet/engine/commit/1289b9627dc59bf08e66edbef1bf7bf08e53984c)
|
|
35
|
+
- update [`ec11af8`](https://github.com/underpostnet/engine/commit/ec11af86e884ca3eeaeaa12695edddaa8b46492d)
|
|
36
|
+
- remove toast-ui [`40c207f`](https://github.com/underpostnet/engine/commit/40c207f13f3e6d7ab71fc4cc203ce6ff02101bb5)
|
|
37
|
+
|
|
38
|
+
#### [v2.5.1](https://github.com/underpostnet/engine/compare/v2.5.0...v2.5.1)
|
|
39
|
+
|
|
40
|
+
> 27 August 2024
|
|
41
|
+
|
|
42
|
+
- refactor ssr [`4fa5d24`](https://github.com/underpostnet/engine/commit/4fa5d24531f791fa860a4ba38b9784491f084a68)
|
|
43
|
+
- bucket to document [`747cb0b`](https://github.com/underpostnet/engine/commit/747cb0bf5198e4b97df186e642413fa49ed9383f)
|
|
44
|
+
- add user control table managements [`2cfb710`](https://github.com/underpostnet/engine/commit/2cfb7103a591b941897ff3834ad5874565cba6b4)
|
|
45
|
+
|
|
46
|
+
#### [v2.5.0](https://github.com/underpostnet/engine/compare/v2.0.0...v2.5.0)
|
|
47
|
+
|
|
48
|
+
> 23 August 2024
|
|
49
|
+
|
|
50
|
+
- css refactor [`49b1904`](https://github.com/underpostnet/engine/commit/49b1904e83162f9066fbf843ced37d4e87db5581)
|
|
51
|
+
- refactor [`dad4f95`](https://github.com/underpostnet/engine/commit/dad4f9567629b737254702ce8be6b243e68fb01e)
|
|
52
|
+
- add sitemap builder [`53d05a6`](https://github.com/underpostnet/engine/commit/53d05a62d03ea327df3d37181a4b5c272d417289)
|
|
53
|
+
|
|
54
|
+
### [v2.0.0](https://github.com/underpostnet/engine/compare/v1.0.4...v2.0.0)
|
|
55
|
+
|
|
56
|
+
> 30 March 2024
|
|
57
|
+
|
|
58
|
+
- seed-city assets [`6d9decb`](https://github.com/underpostnet/engine/commit/6d9decbae96b828aa001777f96dd75aab3fc71d1)
|
|
59
|
+
- update [`1069fc5`](https://github.com/underpostnet/engine/commit/1069fc5268aa5ef7c101695393de59edfc14daf8)
|
|
60
|
+
- update [`41ae7d4`](https://github.com/underpostnet/engine/commit/41ae7d4c969cce0608171c820e05ebab42610a7f)
|
|
61
|
+
|
|
62
|
+
#### [v1.0.4](https://github.com/underpostnet/engine/compare/v1.0.3...v1.0.4)
|
|
63
|
+
|
|
64
|
+
> 14 January 2023
|
|
65
|
+
|
|
66
|
+
- update [`8109700`](https://github.com/underpostnet/engine/commit/81097008baa95ac50efb760b228dc4abae63c379)
|
|
67
|
+
- update [`b6bb47f`](https://github.com/underpostnet/engine/commit/b6bb47f95bd56c0062066ecae5f03813cf1ed6f8)
|
|
68
|
+
- update [`15c0ca9`](https://github.com/underpostnet/engine/commit/15c0ca9f9a8203bec53a9677d5a8edcd04a7f1df)
|
|
69
|
+
|
|
70
|
+
#### [v1.0.3](https://github.com/underpostnet/engine/compare/v1.0.2...v1.0.3)
|
|
71
|
+
|
|
72
|
+
> 21 December 2022
|
|
73
|
+
|
|
74
|
+
- update [`69418ba`](https://github.com/underpostnet/engine/commit/69418ba34831983e07aa458d1ea4a742c7b66096)
|
|
75
|
+
- update [`003412f`](https://github.com/underpostnet/engine/commit/003412fadf3efe6b819f037e99855192f13ccd7e)
|
|
76
|
+
|
|
77
|
+
#### [v1.0.2](https://github.com/underpostnet/engine/compare/v1.0.1...v1.0.2)
|
|
78
|
+
|
|
79
|
+
> 21 December 2022
|
|
80
|
+
|
|
81
|
+
- update [`470f07a`](https://github.com/underpostnet/engine/commit/470f07a72398792ac9ecf07bf1ba5170bc427dc5)
|
|
82
|
+
- update [`dacc20a`](https://github.com/underpostnet/engine/commit/dacc20a14971388bcf2a5077286989a77197aadc)
|
|
83
|
+
- update [`d2efee0`](https://github.com/underpostnet/engine/commit/d2efee08f9b31dd9fca31a3b1b15bdaa0e75faea)
|
|
84
|
+
|
|
85
|
+
#### v1.0.1
|
|
86
|
+
|
|
87
|
+
> 11 October 2022
|
|
88
|
+
|
|
89
|
+
- update [`bd40237`](https://github.com/underpostnet/engine/commit/bd402372513151a15a972a7727f7d77d014739f1)
|
|
90
|
+
- update [`39dd3b9`](https://github.com/underpostnet/engine/commit/39dd3b9a5a6b4292b899840dd5cd333cc80410d1)
|
|
91
|
+
- First Commit [`ad7b2a3`](https://github.com/underpostnet/engine/commit/ad7b2a3be0746b34fa19ba896d3faa7f1b4f40dc)
|