@underpostnet/underpost 2.7.9
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 +14 -0
- package/.env.development +6 -0
- package/.env.production +6 -0
- package/.env.test +6 -0
- package/.github/workflows/ghpkg.yml +115 -0
- package/.github/workflows/publish.yml +84 -0
- package/.github/workflows/pwa-microservices-template.page.yml +54 -0
- package/.github/workflows/pwa-microservices-template.test.yml +30 -0
- package/.nycrc +9 -0
- package/.prettierignore +13 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +72 -0
- package/.vscode/settings.json +106 -0
- package/AUTHORS.md +10 -0
- package/CHANGELOG.md +85 -0
- package/Dockerfile +90 -0
- package/LICENSE +21 -0
- package/README.md +96 -0
- package/bin/cron.js +47 -0
- package/bin/db.js +180 -0
- package/bin/deploy.js +859 -0
- package/bin/file.js +109 -0
- package/bin/index.js +82 -0
- package/bin/ssl.js +55 -0
- package/bin/util.js +204 -0
- package/bin/vs.js +35 -0
- package/conf.js +265 -0
- package/docker-compose.yml +67 -0
- package/jsconfig.json +7 -0
- package/jsdoc.json +32 -0
- package/nodemon.json +6 -0
- package/package.json +134 -0
- package/prometheus.yml +36 -0
- package/src/api/core/core.controller.js +69 -0
- package/src/api/core/core.model.js +11 -0
- package/src/api/core/core.router.js +23 -0
- package/src/api/core/core.service.js +31 -0
- package/src/api/crypto/crypto.controller.js +51 -0
- package/src/api/crypto/crypto.model.js +23 -0
- package/src/api/crypto/crypto.router.js +20 -0
- package/src/api/crypto/crypto.service.js +64 -0
- package/src/api/default/default.controller.js +69 -0
- package/src/api/default/default.model.js +20 -0
- package/src/api/default/default.router.js +23 -0
- package/src/api/default/default.service.js +31 -0
- package/src/api/file/file.controller.js +53 -0
- package/src/api/file/file.model.js +19 -0
- package/src/api/file/file.router.js +21 -0
- package/src/api/file/file.service.js +80 -0
- package/src/api/instance/instance.controller.js +69 -0
- package/src/api/instance/instance.model.js +36 -0
- package/src/api/instance/instance.router.js +33 -0
- package/src/api/instance/instance.service.js +48 -0
- package/src/api/test/test.controller.js +59 -0
- package/src/api/test/test.model.js +14 -0
- package/src/api/test/test.router.js +21 -0
- package/src/api/test/test.service.js +35 -0
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -0
- package/src/api/user/user.model.js +65 -0
- package/src/api/user/user.router.js +345 -0
- package/src/api/user/user.service.js +479 -0
- package/src/api.js +23 -0
- package/src/client/Default.index.js +40 -0
- package/src/client/components/core/Account.js +290 -0
- package/src/client/components/core/AgGrid.js +160 -0
- package/src/client/components/core/Auth.js +19 -0
- package/src/client/components/core/Badge.js +32 -0
- package/src/client/components/core/Blockchain.js +41 -0
- package/src/client/components/core/Blog.js +9 -0
- package/src/client/components/core/BtnIcon.js +101 -0
- package/src/client/components/core/CalendarCore.js +458 -0
- package/src/client/components/core/Chat.js +64 -0
- package/src/client/components/core/ColorPalette.js +5267 -0
- package/src/client/components/core/CommonJs.js +742 -0
- package/src/client/components/core/Content.js +193 -0
- package/src/client/components/core/Css.js +846 -0
- package/src/client/components/core/CssCore.js +844 -0
- package/src/client/components/core/D3Chart.js +44 -0
- package/src/client/components/core/Docs.js +331 -0
- package/src/client/components/core/DropDown.js +164 -0
- package/src/client/components/core/EventsUI.js +46 -0
- package/src/client/components/core/FileExplorer.js +699 -0
- package/src/client/components/core/FullScreen.js +45 -0
- package/src/client/components/core/Input.js +346 -0
- package/src/client/components/core/JoyStick.js +77 -0
- package/src/client/components/core/Keyboard.js +73 -0
- package/src/client/components/core/LoadingAnimation.js +178 -0
- package/src/client/components/core/LogIn.js +187 -0
- package/src/client/components/core/LogOut.js +58 -0
- package/src/client/components/core/Logger.js +26 -0
- package/src/client/components/core/Modal.js +1814 -0
- package/src/client/components/core/NotificationManager.js +84 -0
- package/src/client/components/core/Panel.js +613 -0
- package/src/client/components/core/PanelForm.js +469 -0
- package/src/client/components/core/Polyhedron.js +162 -0
- package/src/client/components/core/Recover.js +204 -0
- package/src/client/components/core/Responsive.js +68 -0
- package/src/client/components/core/RichText.js +53 -0
- package/src/client/components/core/Router.js +76 -0
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -0
- package/src/client/components/core/SocketIo.js +72 -0
- package/src/client/components/core/Stream.js +113 -0
- package/src/client/components/core/ToggleSwitch.js +87 -0
- package/src/client/components/core/ToolTip.js +26 -0
- package/src/client/components/core/Translate.js +446 -0
- package/src/client/components/core/Validator.js +100 -0
- package/src/client/components/core/VanillaJs.js +463 -0
- package/src/client/components/core/Wallet.js +106 -0
- package/src/client/components/core/WebComponent.js +44 -0
- package/src/client/components/core/Webhook.js +25 -0
- package/src/client/components/core/Worker.js +280 -0
- package/src/client/components/default/CommonDefault.js +29 -0
- package/src/client/components/default/CssDefault.js +13 -0
- package/src/client/components/default/ElementsDefault.js +38 -0
- package/src/client/components/default/LogInDefault.js +41 -0
- package/src/client/components/default/LogOutDefault.js +28 -0
- package/src/client/components/default/MenuDefault.js +389 -0
- package/src/client/components/default/RoutesDefault.js +48 -0
- package/src/client/components/default/SettingsDefault.js +16 -0
- package/src/client/components/default/SignUpDefault.js +9 -0
- package/src/client/components/default/SocketIoDefault.js +54 -0
- package/src/client/components/default/TranslateDefault.js +7 -0
- package/src/client/public/default/android-chrome-144x144.png +0 -0
- package/src/client/public/default/android-chrome-192x192.png +0 -0
- package/src/client/public/default/android-chrome-256x256.png +0 -0
- package/src/client/public/default/android-chrome-36x36.png +0 -0
- package/src/client/public/default/android-chrome-384x384.png +0 -0
- package/src/client/public/default/android-chrome-48x48.png +0 -0
- package/src/client/public/default/android-chrome-512x512.png +0 -0
- package/src/client/public/default/android-chrome-72x72.png +0 -0
- package/src/client/public/default/android-chrome-96x96.png +0 -0
- package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
- package/src/client/public/default/assets/background/white.jpg +0 -0
- package/src/client/public/default/assets/background/white0-min.jpg +0 -0
- package/src/client/public/default/assets/background/white0.jpg +0 -0
- package/src/client/public/default/assets/logo/base-icon.png +0 -0
- 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 +12 -0
- package/src/client/public/default/favicon-16x16.png +0 -0
- package/src/client/public/default/favicon-32x32.png +0 -0
- package/src/client/public/default/favicon-48x48.png +0 -0
- package/src/client/public/default/favicon.ico +0 -0
- package/src/client/public/default/manifest.webmanifest +69 -0
- package/src/client/public/default/mstile-144x144.png +0 -0
- package/src/client/public/default/mstile-150x150.png +0 -0
- package/src/client/public/default/mstile-310x150.png +0 -0
- package/src/client/public/default/mstile-310x310.png +0 -0
- package/src/client/public/default/mstile-70x70.png +0 -0
- 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/site.webmanifest +69 -0
- package/src/client/public/default/sitemap +148 -0
- package/src/client/public/default/yandex-browser-50x50.png +0 -0
- package/src/client/public/default/yandex-browser-manifest.json +9 -0
- package/src/client/public/doc/favicon.ico +0 -0
- package/src/client/public/doc/sitemap +148 -0
- package/src/client/public/test/favicon.ico +0 -0
- package/src/client/public/test/sitemap +148 -0
- package/src/client/services/core/core.service.js +170 -0
- package/src/client/services/crypto/crypto.service.js +70 -0
- package/src/client/services/default/default.management.js +343 -0
- package/src/client/services/default/default.service.js +89 -0
- package/src/client/services/file/file.service.js +70 -0
- package/src/client/services/instance/instance.management.js +74 -0
- package/src/client/services/instance/instance.service.js +89 -0
- package/src/client/services/test/test.service.js +70 -0
- package/src/client/services/user/user.management.js +50 -0
- package/src/client/services/user/user.service.js +89 -0
- package/src/client/ssr/Render.js +237 -0
- package/src/client/ssr/common/Alert.js +75 -0
- package/src/client/ssr/common/SsrCore.js +91 -0
- package/src/client/ssr/common/Translate.js +26 -0
- package/src/client/ssr/common/Worker.js +28 -0
- package/src/client/ssr/components/body/CacheControl.js +114 -0
- package/src/client/ssr/components/body/DefaultSplashScreen.js +90 -0
- package/src/client/ssr/components/email/DefaultRecoverEmail.js +21 -0
- package/src/client/ssr/components/email/DefaultVerifyEmail.js +17 -0
- package/src/client/ssr/components/head/Css.js +241 -0
- package/src/client/ssr/components/head/DefaultScripts.js +3 -0
- package/src/client/ssr/components/head/Production.js +1 -0
- package/src/client/ssr/components/head/Pwa.js +146 -0
- package/src/client/ssr/components/head/PwaDefault.js +60 -0
- package/src/client/ssr/components/head/Seo.js +14 -0
- package/src/client/ssr/pages/404.js +12 -0
- package/src/client/ssr/pages/500.js +12 -0
- package/src/client/ssr/pages/maintenance.js +14 -0
- package/src/client/ssr/pages/offline.js +21 -0
- package/src/client/sw/default.sw.js +205 -0
- package/src/client/sw/template.sw.js +84 -0
- package/src/client.build.js +22 -0
- package/src/client.dev.js +21 -0
- package/src/db/DataBaseProvider.js +45 -0
- package/src/db/mariadb/MariaDB.js +33 -0
- package/src/db/mongo/MongooseDB.js +124 -0
- package/src/dns.js +22 -0
- package/src/index.js +43 -0
- package/src/mailer/EmailRender.js +69 -0
- package/src/mailer/MailerProvider.js +96 -0
- package/src/proxy.js +22 -0
- package/src/runtime/lampp/Lampp.js +115 -0
- package/src/runtime/nginx/Nginx.js +3 -0
- package/src/runtime/xampp/Xampp.js +49 -0
- package/src/server/auth.js +235 -0
- package/src/server/backup.js +120 -0
- package/src/server/client-build-live.js +98 -0
- package/src/server/client-build.js +754 -0
- package/src/server/client-dev-server.js +60 -0
- package/src/server/client-formatted.js +58 -0
- package/src/server/client-icons.js +151 -0
- package/src/server/conf.js +929 -0
- package/src/server/crypto.js +91 -0
- package/src/server/dns.js +118 -0
- package/src/server/downloader.js +42 -0
- package/src/server/logger.js +190 -0
- package/src/server/network.js +209 -0
- package/src/server/peer.js +33 -0
- package/src/server/process.js +66 -0
- package/src/server/prompt-optimizer.js +28 -0
- package/src/server/proxy.js +118 -0
- package/src/server/runtime.js +463 -0
- package/src/server/ssl.js +120 -0
- package/src/server.js +25 -0
- package/src/ws/IoInterface.js +45 -0
- package/src/ws/IoServer.js +39 -0
- package/src/ws/core/channels/core.ws.chat.js +23 -0
- package/src/ws/core/channels/core.ws.mailer.js +35 -0
- package/src/ws/core/channels/core.ws.stream.js +31 -0
- package/src/ws/core/core.ws.connection.js +28 -0
- package/src/ws/core/core.ws.emit.js +14 -0
- package/src/ws/core/core.ws.server.js +24 -0
- package/src/ws/core/management/core.ws.chat.js +8 -0
- package/src/ws/core/management/core.ws.mailer.js +16 -0
- package/src/ws/core/management/core.ws.stream.js +8 -0
- package/src/ws/default/channels/default.ws.main.js +16 -0
- package/src/ws/default/default.ws.connection.js +22 -0
- package/src/ws/default/default.ws.emit.js +14 -0
- package/src/ws/default/default.ws.server.js +20 -0
- package/src/ws/default/management/default.ws.main.js +8 -0
- package/startup.js +11 -0
- package/supervisord-openssh-server.conf +5 -0
- package/test/api.test.js +60 -0
package/.dockerignore
ADDED
package/.env.development
ADDED
package/.env.production
ADDED
package/.env.test
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
name: Update github repo package
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches: ['master']
|
|
5
|
+
pull_request:
|
|
6
|
+
branches: ['master']
|
|
7
|
+
permissions:
|
|
8
|
+
contents: write
|
|
9
|
+
packages: write
|
|
10
|
+
id-token: write
|
|
11
|
+
jobs:
|
|
12
|
+
pwa-microservices-template:
|
|
13
|
+
if: github.repository == 'underpostnet/engine' && startsWith(github.event.head_commit.message, '[ci][package][pwa-microservices-template]')
|
|
14
|
+
name: Update github repo package Jobs
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
permissions:
|
|
17
|
+
contents: write
|
|
18
|
+
packages: write
|
|
19
|
+
id-token: write
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v3
|
|
22
|
+
- uses: actions/setup-node@v4
|
|
23
|
+
with:
|
|
24
|
+
node-version: '22.x'
|
|
25
|
+
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: |
|
|
28
|
+
npm install
|
|
29
|
+
|
|
30
|
+
- name: Set git credentials
|
|
31
|
+
run: |
|
|
32
|
+
git config --global credential.helper ""
|
|
33
|
+
git config credential.helper ""
|
|
34
|
+
git config --global user.name 'underpostnet'
|
|
35
|
+
git config --global user.email 'fcoverdugoa@underpost.net'
|
|
36
|
+
git config --global credential.interactive always
|
|
37
|
+
git config user.name 'underpostnet'
|
|
38
|
+
git config user.email 'fcoverdugoa@underpost.net'
|
|
39
|
+
git config credential.interactive always
|
|
40
|
+
|
|
41
|
+
- name: Clone github package repository
|
|
42
|
+
run: |
|
|
43
|
+
cd .. && git clone https://github.com/underpostnet/pwa-microservices-template.git
|
|
44
|
+
cd engine
|
|
45
|
+
npm run update-template
|
|
46
|
+
cd ../pwa-microservices-template
|
|
47
|
+
git remote set-url origin git@github.com:underpostnet/pwa-microservices-template.git
|
|
48
|
+
git add .
|
|
49
|
+
git commit -m "Update github repo package"
|
|
50
|
+
git push https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template.git
|
|
51
|
+
|
|
52
|
+
pwa-microservices-template-ghpk:
|
|
53
|
+
if: github.repository == 'underpostnet/pwa-microservices-template'
|
|
54
|
+
name: Update github repo package Jobs
|
|
55
|
+
runs-on: ubuntu-latest
|
|
56
|
+
permissions:
|
|
57
|
+
contents: write
|
|
58
|
+
packages: write
|
|
59
|
+
id-token: write
|
|
60
|
+
steps:
|
|
61
|
+
- uses: actions/checkout@v3
|
|
62
|
+
- uses: actions/setup-node@v4
|
|
63
|
+
with:
|
|
64
|
+
node-version: '22.x'
|
|
65
|
+
|
|
66
|
+
# - name: Get npm root
|
|
67
|
+
# run: sudo npm root -g
|
|
68
|
+
|
|
69
|
+
# - run: npm ci
|
|
70
|
+
|
|
71
|
+
# - name: Install underpost cli
|
|
72
|
+
# run: sudo npm install -g underpost
|
|
73
|
+
|
|
74
|
+
# usage: git remote set-url [--push] <name> <newurl> [<oldurl>]
|
|
75
|
+
# or: git remote set-url --add <name> <newurl>
|
|
76
|
+
# or: git remote set-url --delete <name> <url>
|
|
77
|
+
# --[no-]push manipulate push URLs
|
|
78
|
+
# --[no-]add add URL
|
|
79
|
+
# --[no-]delete delete URLs
|
|
80
|
+
|
|
81
|
+
- name: Install dependencies and set repo configuration
|
|
82
|
+
run: |
|
|
83
|
+
npm install
|
|
84
|
+
node ./bin/deploy rename-package @underpostnet/underpost
|
|
85
|
+
node ./bin/deploy set-repo underpostnet/pwa-microservices-template-ghpkg
|
|
86
|
+
|
|
87
|
+
- name: Clone github package repository
|
|
88
|
+
run: |
|
|
89
|
+
git clone https://github.com/underpostnet/pwa-microservices-template-ghpkg.git
|
|
90
|
+
rm -rf ./.git
|
|
91
|
+
cp -a ./pwa-microservices-template-ghpkg/.git ./.git
|
|
92
|
+
rm -rf ./pwa-microservices-template-ghpkg
|
|
93
|
+
|
|
94
|
+
- name: Set git credentials
|
|
95
|
+
run: |
|
|
96
|
+
git config --global credential.helper ""
|
|
97
|
+
git config credential.helper ""
|
|
98
|
+
git config --global user.name 'underpostnet'
|
|
99
|
+
git config --global user.email 'fcoverdugoa@underpost.net'
|
|
100
|
+
git config --global credential.interactive always
|
|
101
|
+
git config user.name 'underpostnet'
|
|
102
|
+
git config user.email 'fcoverdugoa@underpost.net'
|
|
103
|
+
git config credential.interactive always
|
|
104
|
+
|
|
105
|
+
- name: Push to github package repository
|
|
106
|
+
run: |
|
|
107
|
+
pwd
|
|
108
|
+
git status
|
|
109
|
+
git remote set-url origin git@github.com:underpostnet/pwa-microservices-template-ghpkg.git
|
|
110
|
+
git add .
|
|
111
|
+
git commit -m "Update github repo package"
|
|
112
|
+
git push https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template-ghpkg.git
|
|
113
|
+
|
|
114
|
+
# git push -u origin https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template-ghpkg.git
|
|
115
|
+
# git push -u origin master
|
|
@@ -0,0 +1,84 @@
|
|
|
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: '22.x'
|
|
18
|
+
registry-url: 'https://registry.npmjs.org'
|
|
19
|
+
|
|
20
|
+
- name: Install Dependencies
|
|
21
|
+
run: npm install
|
|
22
|
+
|
|
23
|
+
- run: npm ci
|
|
24
|
+
|
|
25
|
+
# Publish to npm
|
|
26
|
+
- uses: actions/setup-node@v4
|
|
27
|
+
with:
|
|
28
|
+
node-version: '22.x'
|
|
29
|
+
registry-url: 'https://registry.npmjs.org'
|
|
30
|
+
# Defaults to the user or organization that owns the workflow file
|
|
31
|
+
# scope: '@underpostnet'
|
|
32
|
+
- env:
|
|
33
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
34
|
+
name: Publish to npm
|
|
35
|
+
run: npm publish --provenance --access public
|
|
36
|
+
|
|
37
|
+
build-and-publish-ghpkg:
|
|
38
|
+
# prevents this action from running on forks
|
|
39
|
+
if: github.repository == 'underpostnet/pwa-microservices-template-ghpkg'
|
|
40
|
+
runs-on: ubuntu-latest
|
|
41
|
+
permissions:
|
|
42
|
+
contents: read
|
|
43
|
+
id-token: write
|
|
44
|
+
steps:
|
|
45
|
+
- uses: actions/checkout@v4
|
|
46
|
+
- uses: actions/setup-node@v4
|
|
47
|
+
with:
|
|
48
|
+
node-version: '22.x'
|
|
49
|
+
registry-url: 'https://registry.npmjs.org'
|
|
50
|
+
|
|
51
|
+
- name: Install Dependencies
|
|
52
|
+
run: npm install
|
|
53
|
+
|
|
54
|
+
- run: npm ci
|
|
55
|
+
|
|
56
|
+
# Publish to npm git hub package
|
|
57
|
+
- uses: actions/setup-node@v4
|
|
58
|
+
with:
|
|
59
|
+
node-version: '22.x'
|
|
60
|
+
registry-url: 'https://registry.npmjs.org'
|
|
61
|
+
# Defaults to the user or organization that owns the workflow file
|
|
62
|
+
scope: '@underpostnet'
|
|
63
|
+
- env:
|
|
64
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
65
|
+
name: Publish to npm
|
|
66
|
+
run: |
|
|
67
|
+
npm publish --provenance --access public
|
|
68
|
+
|
|
69
|
+
# Publish to GitHub Packages
|
|
70
|
+
- name: Setup node to publish to GitHub Packages
|
|
71
|
+
uses: actions/setup-node@v4
|
|
72
|
+
with:
|
|
73
|
+
node-version: 22.x
|
|
74
|
+
registry-url: 'https://npm.pkg.github.com'
|
|
75
|
+
# Defaults to the user or organization that owns the workflow file
|
|
76
|
+
scope: '@underpostnet'
|
|
77
|
+
|
|
78
|
+
- run: |
|
|
79
|
+
npm config set //npm.pkg.github.com/:_authToken=${{ secrets.GIT_AUTH_TOKEN }}
|
|
80
|
+
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GIT_AUTH_TOKEN }}" > ~/.npmrc
|
|
81
|
+
echo "@underposnet:registry=https://npm.pkg.github.com" >> ~/.npmrc
|
|
82
|
+
npm publish
|
|
83
|
+
env:
|
|
84
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Simple workflow for deploying static content to GitHub Pages
|
|
2
|
+
name: Deploy static content to Pages
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
# Runs on pushes targeting the default branch
|
|
6
|
+
push:
|
|
7
|
+
branches: ['main']
|
|
8
|
+
|
|
9
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
|
|
12
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
13
|
+
permissions:
|
|
14
|
+
contents: read
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
|
|
18
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
19
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
20
|
+
concurrency:
|
|
21
|
+
group: 'pages'
|
|
22
|
+
cancel-in-progress: false
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
# Single deploy job since we're just deploying
|
|
26
|
+
deploy:
|
|
27
|
+
if: github.repository == 'underpostnet/pwa-microservices-template-ghpkg'
|
|
28
|
+
environment:
|
|
29
|
+
name: github-pages
|
|
30
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
steps:
|
|
33
|
+
- name: Checkout
|
|
34
|
+
uses: actions/checkout@v4
|
|
35
|
+
- uses: actions/setup-node@v4
|
|
36
|
+
with:
|
|
37
|
+
node-version: '22.x'
|
|
38
|
+
|
|
39
|
+
- name: Build the site
|
|
40
|
+
run: |
|
|
41
|
+
npm install
|
|
42
|
+
node bin/deploy update-default-conf
|
|
43
|
+
npm run build-production github-pages underpostnet.github.io /pwa-microservices-template-ghpkg
|
|
44
|
+
|
|
45
|
+
- name: Setup Pages
|
|
46
|
+
uses: actions/configure-pages@v5
|
|
47
|
+
- name: Upload artifact
|
|
48
|
+
uses: actions/upload-pages-artifact@v3
|
|
49
|
+
with:
|
|
50
|
+
# Upload entire repository
|
|
51
|
+
path: './public/underpostnet.github.io/pwa-microservices-template-ghpkg/'
|
|
52
|
+
- name: Deploy to GitHub Pages
|
|
53
|
+
id: deployment
|
|
54
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: Test
|
|
2
|
+
on: [push]
|
|
3
|
+
jobs:
|
|
4
|
+
test:
|
|
5
|
+
if: (github.repository == 'underpostnet/pwa-microservices-template') || (github.repository == 'underpostnet/pwa-microservices-template-ghpkg')
|
|
6
|
+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
|
|
7
|
+
runs-on: ${{ matrix.os }}
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
node-version: [21.x]
|
|
11
|
+
os: [ubuntu-latest]
|
|
12
|
+
# os: [ubuntu-latest, windows-latest]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- name: Clone repository
|
|
16
|
+
uses: actions/checkout@v3
|
|
17
|
+
|
|
18
|
+
- name: Set Node.js version
|
|
19
|
+
uses: actions/setup-node@v3
|
|
20
|
+
with:
|
|
21
|
+
node-version: ${{ matrix.node }}
|
|
22
|
+
|
|
23
|
+
- name: Get npm root
|
|
24
|
+
run: sudo npm root -g
|
|
25
|
+
|
|
26
|
+
- name: Install underpost cli
|
|
27
|
+
run: sudo npm install -g underpost
|
|
28
|
+
|
|
29
|
+
- name: Run test
|
|
30
|
+
run: sudo underpost test
|
package/.nycrc
ADDED
package/.prettierignore
ADDED
package/.prettierrc
ADDED
|
@@ -0,0 +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
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
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
|
+
"gameplay",
|
|
34
|
+
"googlebot",
|
|
35
|
+
"Hexa",
|
|
36
|
+
"htdocs",
|
|
37
|
+
"htmls",
|
|
38
|
+
"inlt",
|
|
39
|
+
"ipfs",
|
|
40
|
+
"Itemledger",
|
|
41
|
+
"jsonld",
|
|
42
|
+
"lampp",
|
|
43
|
+
"loadingio",
|
|
44
|
+
"Longname",
|
|
45
|
+
"Microdata",
|
|
46
|
+
"minami",
|
|
47
|
+
"MMORPG",
|
|
48
|
+
"mysqldump",
|
|
49
|
+
"neodrag",
|
|
50
|
+
"nexodev",
|
|
51
|
+
"pathfinding",
|
|
52
|
+
"Pixi",
|
|
53
|
+
"plantuml",
|
|
54
|
+
"privkey",
|
|
55
|
+
"runas",
|
|
56
|
+
"Scatterplot",
|
|
57
|
+
"sortablejs",
|
|
58
|
+
"supervisord",
|
|
59
|
+
"Tokenomics",
|
|
60
|
+
"underpost",
|
|
61
|
+
"Unequip",
|
|
62
|
+
"webroot",
|
|
63
|
+
"xampp",
|
|
64
|
+
"xfwd",
|
|
65
|
+
"youtu"
|
|
66
|
+
],
|
|
67
|
+
"[dockerfile]": {
|
|
68
|
+
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
|
|
69
|
+
},
|
|
70
|
+
"[php]": {
|
|
71
|
+
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
|
|
72
|
+
},
|
|
73
|
+
"[xml]": {
|
|
74
|
+
"editor.defaultFormatter": "redhat.vscode-xml"
|
|
75
|
+
},
|
|
76
|
+
"docwriter.style": "JSDoc",
|
|
77
|
+
"docwriter.progress.trackFunctions": false,
|
|
78
|
+
"docwriter.progress.trackMethods": false,
|
|
79
|
+
"files.exclude": {
|
|
80
|
+
"**/.git": true, // this is a default value
|
|
81
|
+
"**/.DS_Store": true, // this is a default value
|
|
82
|
+
|
|
83
|
+
"**/node_modules": true, // this excludes all folders
|
|
84
|
+
// named "node_modules" from
|
|
85
|
+
// the explore tree
|
|
86
|
+
|
|
87
|
+
// alternative version
|
|
88
|
+
"node_modules": true, // this excludes the folder
|
|
89
|
+
// only from the root of
|
|
90
|
+
// your workspace
|
|
91
|
+
"public": true,
|
|
92
|
+
"engine-private": true,
|
|
93
|
+
"conf": true,
|
|
94
|
+
"tmp": true,
|
|
95
|
+
"bkt": true,
|
|
96
|
+
"logs": true,
|
|
97
|
+
"build": true,
|
|
98
|
+
"coverage": true,
|
|
99
|
+
"prometheus_data": true,
|
|
100
|
+
"grafana_data": true,
|
|
101
|
+
".nyc_output": true
|
|
102
|
+
},
|
|
103
|
+
"[solidity]": {
|
|
104
|
+
"editor.defaultFormatter": "JuanBlanco.solidity"
|
|
105
|
+
}
|
|
106
|
+
}
|
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,85 @@
|
|
|
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.7.83](https://github.com/underpostnet/engine/compare/v2.7.7...v2.7.83)
|
|
8
|
+
|
|
9
|
+
> 28 October 2024
|
|
10
|
+
|
|
11
|
+
- update version 2.7.83 [`3d22671`](https://github.com/underpostnet/engine/commit/3d22671a23f25767cc01c244090e237ab3a300da)
|
|
12
|
+
- ssr refactor [`836b848`](https://github.com/underpostnet/engine/commit/836b8488b8b5156c4c5d376fefd592e25071a212)
|
|
13
|
+
- fix pixi js render [`93aaee3`](https://github.com/underpostnet/engine/commit/93aaee3683b070874b65ca2c00d27f2a787a0a5d)
|
|
14
|
+
|
|
15
|
+
#### [v2.7.7](https://github.com/underpostnet/engine/compare/v2.7.6...v2.7.7)
|
|
16
|
+
|
|
17
|
+
> 25 October 2024
|
|
18
|
+
|
|
19
|
+
- update version 2.7.7 [`df31617`](https://github.com/underpostnet/engine/commit/df316174ca563251fbaca62a6717771f3056e59b)
|
|
20
|
+
- cyberia ssr lore advance [`ad1f214`](https://github.com/underpostnet/engine/commit/ad1f2144bdd2f3b5b1f2ebc4b9f6b83716df800a)
|
|
21
|
+
- advance ssr lore cyberia [`03b2292`](https://github.com/underpostnet/engine/commit/03b2292f6e092fc9b98cfb6aba9eee6eb0f21a06)
|
|
22
|
+
|
|
23
|
+
#### [v2.7.6](https://github.com/underpostnet/engine/compare/v2.7.5...v2.7.6)
|
|
24
|
+
|
|
25
|
+
> 17 October 2024
|
|
26
|
+
|
|
27
|
+
- update version v2.7.6 [`ddbc2c4`](https://github.com/underpostnet/engine/commit/ddbc2c4bd366e75b580be288c28c68830ed390d5)
|
|
28
|
+
- update node version 22.9.0 and hardhat refactor [`8ba9281`](https://github.com/underpostnet/engine/commit/8ba92818cd67438359dd1aa0938fd33bb932e718)
|
|
29
|
+
- remove pinata [`e231b00`](https://github.com/underpostnet/engine/commit/e231b00919d9d0e31c9718d4dc512384779cf2bb)
|
|
30
|
+
|
|
31
|
+
#### [v2.7.5](https://github.com/underpostnet/engine/compare/v2.7.2...v2.7.5)
|
|
32
|
+
|
|
33
|
+
> 10 October 2024
|
|
34
|
+
|
|
35
|
+
- remove os switchs [`78f7c17`](https://github.com/underpostnet/engine/commit/78f7c17bdaa1789101bf3038544d105b51f25309)
|
|
36
|
+
- update version 2.7.5 [`ca059d9`](https://github.com/underpostnet/engine/commit/ca059d99f95121cbd51f4582c60458734e21b70d)
|
|
37
|
+
- add mondo db server daemon [`b3bab7e`](https://github.com/underpostnet/engine/commit/b3bab7e8ba4204da459660d5fdba25c076c6cd33)
|
|
38
|
+
|
|
39
|
+
#### [v2.7.2](https://github.com/underpostnet/engine/compare/v2.7.1...v2.7.2)
|
|
40
|
+
|
|
41
|
+
> 8 October 2024
|
|
42
|
+
|
|
43
|
+
- underpost panel advance [`60087d5`](https://github.com/underpostnet/engine/commit/60087d55920ae9ddf7d7a3396606088d028cc996)
|
|
44
|
+
- file explorer content ui ux refactor [`38e87a0`](https://github.com/underpostnet/engine/commit/38e87a0f0bd222e1d8c9d76904d086aa9d2125ea)
|
|
45
|
+
- add macro db restore logic [`9cfd41c`](https://github.com/underpostnet/engine/commit/9cfd41c5d7adcd309976e7d327af800ffcf92dac)
|
|
46
|
+
|
|
47
|
+
#### [v2.7.1](https://github.com/underpostnet/engine/compare/v2.6.3...v2.7.1)
|
|
48
|
+
|
|
49
|
+
> 19 September 2024
|
|
50
|
+
|
|
51
|
+
- update version 2.7.0 [`03c5c35`](https://github.com/underpostnet/engine/commit/03c5c35a71e7ffb35203a668bfa2f8e2f86125e0)
|
|
52
|
+
- update [`d410da6`](https://github.com/underpostnet/engine/commit/d410da62fadbbb841eb9dcfa5922f105d35ad81d)
|
|
53
|
+
- add changelog generator [`28b3256`](https://github.com/underpostnet/engine/commit/28b3256ab9cebaa9caf2b52426e48f0b3105c8b7)
|
|
54
|
+
|
|
55
|
+
#### [v2.6.3](https://github.com/underpostnet/engine/compare/v2.6.2...v2.6.3)
|
|
56
|
+
|
|
57
|
+
> 14 September 2024
|
|
58
|
+
|
|
59
|
+
- update version 2.6.3 [`85c585d`](https://github.com/underpostnet/engine/commit/85c585d1cce30de4389772605cf56e774e2b7d3c)
|
|
60
|
+
- update refactor docs and coverage [`b455016`](https://github.com/underpostnet/engine/commit/b455016f5f2b2bdc142aacb4dfd66ab890125662)
|
|
61
|
+
- update [`b8f01f2`](https://github.com/underpostnet/engine/commit/b8f01f258999c9ebc1173b0616f0f7b8f7171048)
|
|
62
|
+
|
|
63
|
+
#### [v2.6.2](https://github.com/underpostnet/engine/compare/v2.5.1...v2.6.2)
|
|
64
|
+
|
|
65
|
+
> 13 September 2024
|
|
66
|
+
|
|
67
|
+
- update version 2.6.2 [`0895afb`](https://github.com/underpostnet/engine/commit/0895afbde42dd5a573507ccfcb07c328648b4eb0)
|
|
68
|
+
- update version 2.5.6 [`ca57b87`](https://github.com/underpostnet/engine/commit/ca57b87c56a544e7b7e53baa5a6e15415e16b99b)
|
|
69
|
+
- update [`eec4943`](https://github.com/underpostnet/engine/commit/eec49433f50b4dfa7b7bbff48891a60f5be25545)
|
|
70
|
+
|
|
71
|
+
#### [v2.5.1](https://github.com/underpostnet/engine/compare/v2.0.0...v2.5.1)
|
|
72
|
+
|
|
73
|
+
> 27 August 2024
|
|
74
|
+
|
|
75
|
+
- css refactor [`49b1904`](https://github.com/underpostnet/engine/commit/49b1904e83162f9066fbf843ced37d4e87db5581)
|
|
76
|
+
- refactor [`dad4f95`](https://github.com/underpostnet/engine/commit/dad4f9567629b737254702ce8be6b243e68fb01e)
|
|
77
|
+
- add sitemap builder [`53d05a6`](https://github.com/underpostnet/engine/commit/53d05a62d03ea327df3d37181a4b5c272d417289)
|
|
78
|
+
|
|
79
|
+
#### v2.0.0
|
|
80
|
+
|
|
81
|
+
> 30 March 2024
|
|
82
|
+
|
|
83
|
+
- seed-city assets [`6d9decb`](https://github.com/underpostnet/engine/commit/6d9decbae96b828aa001777f96dd75aab3fc71d1)
|
|
84
|
+
- update [`1069fc5`](https://github.com/underpostnet/engine/commit/1069fc5268aa5ef7c101695393de59edfc14daf8)
|
|
85
|
+
- update [`41ae7d4`](https://github.com/underpostnet/engine/commit/41ae7d4c969cce0608171c820e05ebab42610a7f)
|