@underpostnet/cyberia 3.3.77 → 3.4.0
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/.env.example +1 -0
- package/.github/workflows/coverall.cyberia.ci.yml +12 -3
- package/.github/workflows/cyberia-client.cd.yml +2 -1
- package/.github/workflows/cyberia-server.cd.yml +2 -1
- package/.github/workflows/docker-image.cyberia-client.ci.yml +1 -1
- package/.github/workflows/docker-image.cyberia-client.dev.ci.yml +1 -1
- package/.github/workflows/docker-image.cyberia-server.ci.yml +1 -1
- package/.github/workflows/docker-image.cyberia-server.dev.ci.yml +1 -1
- package/.github/workflows/docker-image.engine-cyberia.ci.yml +1 -1
- package/.github/workflows/docker-image.engine-cyberia.dev.ci.yml +1 -1
- package/.github/workflows/engine-cyberia.ci.yml +6 -0
- package/.github/workflows/ghpkg.ci.yml +19 -2
- package/.github/workflows/gitlab.ci.yml +8 -6
- package/.github/workflows/hardhat.ci.yml +4 -1
- package/.github/workflows/npmpkg.ci.yml +9 -5
- package/.github/workflows/publish.ci.yml +21 -12
- package/.github/workflows/publish.cyberia.ci.yml +25 -14
- package/.github/workflows/pwa-microservices-template-page.cd.yml +4 -2
- package/CHANGELOG.md +75 -140
- package/CLI-HELP.md +28 -1
- package/Dockerfile +1 -1
- package/Dockerfile.dev +1 -1
- package/Dockerfile.test +1 -1
- package/README.md +1 -1
- package/bin/build.js +2 -4
- package/bin/cyberia.js +4 -4
- package/bin/index.js +4 -4
- package/compose.env +1 -0
- package/conf.js +1 -1042
- package/deploy/cyberia-client/deploy.sh +13 -11
- package/deploy/cyberia-server/deploy.sh +13 -11
- package/deploy/dd-cyberia/sync-deploy.sh +7 -28
- package/deploy/lib/config.sh +1 -1
- package/deploy/lib/github-actions-logging.sh +3 -2
- package/deploy/pwa-microservices-template/deploy.sh +7 -1
- package/deployment.yaml +1 -1
- package/docker-compose.yml +7 -7
- package/docs/coverage/cyberia/api/cyberia-instance/cyberia-fallback-capture.js.html +1 -1
- package/docs/coverage/cyberia/api/cyberia-instance/index.html +1 -1
- package/docs/coverage/cyberia/api/cyberia-server-defaults/cyberia-server-defaults.js.html +1 -1
- package/docs/coverage/cyberia/api/cyberia-server-defaults/index.html +1 -1
- package/docs/coverage/cyberia/api/object-layer/index.html +1 -1
- package/docs/coverage/cyberia/api/object-layer/object-layer.model.js.html +1 -1
- package/docs/coverage/cyberia/index.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/atlas-sprite-sheet-generator.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/index.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/instance-backup.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/instance-data.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/shape-generator.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/stat-balance.js.html +1 -1
- package/hardhat/package-lock.json +6 -6
- package/hardhat/package.json +2 -2
- package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
- package/manifests/cronjobs/dd-cron/dd-cron-vultr.yaml +1 -1
- package/manifests/deployment/dd-cyberia-development/deployment.yaml +1 -1
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/package.json +19 -17
- package/scripts/test-monitor.sh +1 -1
- package/src/api/file/file.router.js +7 -1
- package/src/cli/baremetal.js +1 -1
- package/src/cli/docker-compose.js +1 -1
- package/src/cli/index.js +36 -0
- package/src/cli/kubectl.js +4 -3
- package/src/cli/release.js +2 -0
- package/src/cli/repository.js +7 -2
- package/src/cli/run.js +1 -1
- package/src/cli/secrets.js +393 -200
- package/src/cli/socketsecurity.js +260 -0
- package/src/client/components/core/CssCore.js +3 -0
- package/src/client/components/core/Modal.js +160 -36
- package/src/client/components/core/SearchBox.js +0 -1
- package/src/client/components/underpost/AppShellUnderpost.js +13 -1
- package/src/client/components/underpost/CssUnderpost.js +15 -2
- package/src/client/public/cyberia-docs/CYBERIA-CLIENT.md +8 -0
- package/src/client/public/cyberia-docs/CYBERIA.md +1 -1
- package/src/client/public/cyberia-docs/OFF-CHAIN-ECONOMY.md +54 -56
- package/src/client/public/cyberia-docs/ROADMAP.md +1 -1
- package/src/client/public/cyberia-docs/UNDERPOST-PLATFORM.md +30 -29
- package/src/client/public/cyberia-docs/WHITE-PAPER.md +1 -1
- package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +54 -25
- package/src/client/ssr/head/Css.js +12 -10
- package/src/client/ssr/views/Cyberia404.js +6 -10
- package/src/client/ssr/views/NotFound.js +75 -0
- package/src/client-builder/client-bundle.js +2 -2
- package/src/index.js +13 -1
- package/src/runtime/engine-cyberia/Dockerfile +1 -1
- package/src/runtime/engine-cyberia/Dockerfile.dev +1 -1
- package/src/runtime/engine-cyberia/Dockerfile.test +1 -1
- package/src/runtime/engine-cyberia/compose.env +1 -0
- package/src/runtime/engine-cyberia/docker-compose.yml +7 -7
- package/src/server/build/catalog.js +1 -0
- package/src/server/build/execution.js +19 -5
- package/src/server/build/package.js +166 -3
- package/src/server/build/testing.js +2 -1
- package/src/server/runtime/conf.js +21 -0
- package/src/server/runtime/config-scope.js +2 -0
- package/src/server/runtime/process.js +4 -3
- package/src/server/security/socketsecurity.js +1735 -0
- package/test/integration/infra/1-security/config-scope.test.js +3 -0
- package/test/integration/infra/1-security/socketsecurity.test.js +1041 -0
- package/test/integration/infra/1-security/sops-secret-store.test.js +201 -71
- package/test/unit/build-template.test.js +24 -0
- package/test/unit/deploy-log-table.test.js +38 -0
- package/test/unit/execution-profiles.test.js +1 -0
- package/test/unit/package.test.js +118 -0
package/conf.js
CHANGED
|
@@ -1,1044 +1,3 @@
|
|
|
1
|
-
const DefaultConf = /**/ {
|
|
2
|
-
client: {
|
|
3
|
-
underpost: {
|
|
4
|
-
metadata: {
|
|
5
|
-
title: 'Underpost Platform | Tech Lab for Infrastructure, Orchestration and Runtime',
|
|
6
|
-
description:
|
|
7
|
-
'Engineering logs and system development for Underpost Platform: cloud infrastructure, orchestration, CI/CD, containers, and real-time runtime applications.',
|
|
8
|
-
keywords: [
|
|
9
|
-
'Underpost Platform',
|
|
10
|
-
'tech lab',
|
|
11
|
-
'infrastructure orchestration',
|
|
12
|
-
'cloud platform',
|
|
13
|
-
'CI/CD',
|
|
14
|
-
'containers',
|
|
15
|
-
'Kubernetes',
|
|
16
|
-
'LXD',
|
|
17
|
-
'runtime applications',
|
|
18
|
-
'development logs',
|
|
19
|
-
'Node.js',
|
|
20
|
-
'WebAssembly',
|
|
21
|
-
'real-time systems',
|
|
22
|
-
'MMO engine',
|
|
23
|
-
],
|
|
24
|
-
author: 'https://github.com/underpostnet',
|
|
25
|
-
thumbnail: 'assets/banner/underpost-social.jpg',
|
|
26
|
-
themeColor: '#141414',
|
|
27
|
-
},
|
|
28
|
-
publicCopyNonExistingFiles: 'cyberia',
|
|
29
|
-
components: {
|
|
30
|
-
core: [
|
|
31
|
-
'CommonJs',
|
|
32
|
-
'VanillaJs',
|
|
33
|
-
'Responsive',
|
|
34
|
-
'Keyboard',
|
|
35
|
-
'Translate',
|
|
36
|
-
'Modal',
|
|
37
|
-
'SearchBox',
|
|
38
|
-
'BtnIcon',
|
|
39
|
-
'Logger',
|
|
40
|
-
'Css',
|
|
41
|
-
'NotificationManager',
|
|
42
|
-
'ToggleSwitch',
|
|
43
|
-
'DropDown',
|
|
44
|
-
'LoadingAnimation',
|
|
45
|
-
'EventsUI',
|
|
46
|
-
'AgGrid',
|
|
47
|
-
'Pagination',
|
|
48
|
-
'windowGetDimensions',
|
|
49
|
-
'Input',
|
|
50
|
-
'Validator',
|
|
51
|
-
'SignUp',
|
|
52
|
-
'LogIn',
|
|
53
|
-
'LogOut',
|
|
54
|
-
'Router',
|
|
55
|
-
'Account',
|
|
56
|
-
'PublicProfile',
|
|
57
|
-
'Scroll',
|
|
58
|
-
'Auth',
|
|
59
|
-
'ViewModeController',
|
|
60
|
-
'RichText',
|
|
61
|
-
'CalendarCore',
|
|
62
|
-
'D3Chart',
|
|
63
|
-
'Stream',
|
|
64
|
-
'SocketIo',
|
|
65
|
-
'Docs',
|
|
66
|
-
'Content',
|
|
67
|
-
'FileExplorer',
|
|
68
|
-
'Chat',
|
|
69
|
-
'Worker',
|
|
70
|
-
'CssCore',
|
|
71
|
-
'Wallet',
|
|
72
|
-
'Badge',
|
|
73
|
-
'ToolTip',
|
|
74
|
-
'Webhook',
|
|
75
|
-
'Recover',
|
|
76
|
-
'Panel',
|
|
77
|
-
'PanelForm',
|
|
78
|
-
'Polyhedron',
|
|
79
|
-
'AppStore',
|
|
80
|
-
'SocketIoHandler',
|
|
81
|
-
'EventBus',
|
|
82
|
-
'ClientEvents',
|
|
83
|
-
'Repository',
|
|
84
|
-
],
|
|
85
|
-
underpost: [
|
|
86
|
-
'AppShellUnderpost',
|
|
87
|
-
'RouterUnderpost',
|
|
88
|
-
'AppStoreUnderpost',
|
|
89
|
-
'CssUnderpost',
|
|
90
|
-
'LogInUnderpost',
|
|
91
|
-
'LogOutUnderpost',
|
|
92
|
-
'SignUpUnderpost',
|
|
93
|
-
'LabGalleryUnderpost',
|
|
94
|
-
'CyberpunkBloggerUnderpost',
|
|
95
|
-
'TranslateUnderpost',
|
|
96
|
-
'SocketIoUnderpost',
|
|
97
|
-
'SettingsUnderpost',
|
|
98
|
-
'DocumentSearchProvider',
|
|
99
|
-
],
|
|
100
|
-
},
|
|
101
|
-
views: [
|
|
102
|
-
{ path: '/', title: 'Technological and Cultural Lab', client: 'Underpost', ssr: 'Underpost' },
|
|
103
|
-
{ path: '/lab-gallery', client: 'Underpost', ssr: 'Underpost' },
|
|
104
|
-
{ path: '/contracultura-cyberpunk', client: 'Underpost', ssr: 'Underpost' },
|
|
105
|
-
{ path: '/settings', client: 'Underpost', ssr: 'Underpost' },
|
|
106
|
-
{ path: '/log-in', client: 'Underpost', ssr: 'Underpost' },
|
|
107
|
-
{ path: '/sign-up', client: 'Underpost', ssr: 'Underpost' },
|
|
108
|
-
{ path: '/log-out', client: 'Underpost', ssr: 'Underpost' },
|
|
109
|
-
{ path: '/account', client: 'Underpost', ssr: 'Underpost' },
|
|
110
|
-
{ path: '/u', client: 'Underpost', ssr: 'Underpost' },
|
|
111
|
-
{ path: '/recover', client: 'Underpost', ssr: 'Underpost' },
|
|
112
|
-
{ path: '/content', client: 'Underpost', ssr: 'Underpost' },
|
|
113
|
-
{ path: '/cloud', client: 'Underpost', ssr: 'Underpost' },
|
|
114
|
-
{ path: '/polyhedron', client: 'Underpost', ssr: 'Underpost' },
|
|
115
|
-
],
|
|
116
|
-
dists: [
|
|
117
|
-
{
|
|
118
|
-
folder: './node_modules/@neodrag/vanilla/dist/min',
|
|
119
|
-
public_folder: '/dist/@neodrag-vanilla',
|
|
120
|
-
import_name: '@neodrag/vanilla',
|
|
121
|
-
import_name_build: '/dist/@neodrag-vanilla/index.js',
|
|
122
|
-
},
|
|
123
|
-
{ folder: './node_modules/@fortawesome/fontawesome-free', public_folder: '/dist/fontawesome' },
|
|
124
|
-
{
|
|
125
|
-
folder: './node_modules/sortablejs/modular',
|
|
126
|
-
public_folder: '/dist/sortablejs',
|
|
127
|
-
import_name: 'sortablejs',
|
|
128
|
-
import_name_build: '/dist/sortablejs/sortable.complete.esm.js',
|
|
129
|
-
},
|
|
130
|
-
{ folder: './node_modules/validator', public_folder: '/dist/validator' },
|
|
131
|
-
{
|
|
132
|
-
import_name: 'ag-grid-community',
|
|
133
|
-
import_name_build: '/dist/ag-grid-community/ag-grid-community.min.js',
|
|
134
|
-
folder: './node_modules/ag-grid-community/dist',
|
|
135
|
-
public_folder: '/dist/ag-grid-community',
|
|
136
|
-
styles: './node_modules/ag-grid-community/styles',
|
|
137
|
-
public_styles_folder: '/styles/ag-grid-community',
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
folder: './node_modules/socket.io/client-dist',
|
|
141
|
-
public_folder: '/dist/socket.io',
|
|
142
|
-
import_name: 'socket.io/client-dist/socket.io.esm.min.js',
|
|
143
|
-
import_name_build: '/dist/socket.io/socket.io.esm.min.js',
|
|
144
|
-
},
|
|
145
|
-
{ folder: './node_modules/peerjs/dist', public_folder: '/dist/peerjs' },
|
|
146
|
-
{ folder: './node_modules/easymde/dist', public_folder: '/dist/easymde' },
|
|
147
|
-
{
|
|
148
|
-
folder: './node_modules/marked/lib',
|
|
149
|
-
public_folder: '/dist/marked',
|
|
150
|
-
import_name: 'marked',
|
|
151
|
-
import_name_build: '/dist/marked/marked.esm.js',
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
folder: './node_modules/dexie/dist',
|
|
155
|
-
public_folder: '/dist/dexie',
|
|
156
|
-
import_name: 'dexie',
|
|
157
|
-
import_name_build: '/dist/dexie/dexie.mjs',
|
|
158
|
-
},
|
|
159
|
-
],
|
|
160
|
-
services: ['core', 'user', 'file', 'test', 'document'],
|
|
161
|
-
},
|
|
162
|
-
'cyberia-portal': {
|
|
163
|
-
metadata: {
|
|
164
|
-
title: 'CYBERIA',
|
|
165
|
-
description:
|
|
166
|
-
'Browser massively multiplayer online role-playing game. Explore a dynamic online sandbox pixel art universe, right from your browser.',
|
|
167
|
-
keywords: ['cyberia', 'MMORPG', 'browser', 'free', 'MMO'],
|
|
168
|
-
author: 'https://github.com/underpostnet',
|
|
169
|
-
thumbnail: 'assets/splash/CYBERIA.jpg',
|
|
170
|
-
themeColor: '#1a1a1a',
|
|
171
|
-
},
|
|
172
|
-
publicRef: 'cyberia',
|
|
173
|
-
components: {
|
|
174
|
-
cyberia: [
|
|
175
|
-
'SharedDefaultsCyberia',
|
|
176
|
-
'MapEngineCyberia',
|
|
177
|
-
'ObjectLayerEngine',
|
|
178
|
-
'ObjectLayerEngineModal',
|
|
179
|
-
'ObjectLayerEngineViewer',
|
|
180
|
-
'InstanceEngineCyberia',
|
|
181
|
-
'ActionEngineCyberia',
|
|
182
|
-
'EntityEngineCyberia',
|
|
183
|
-
'InstanceSelectionView',
|
|
184
|
-
],
|
|
185
|
-
core: [
|
|
186
|
-
'CommonJs',
|
|
187
|
-
'VanillaJs',
|
|
188
|
-
'Responsive',
|
|
189
|
-
'Keyboard',
|
|
190
|
-
'Translate',
|
|
191
|
-
'Modal',
|
|
192
|
-
'SearchBox',
|
|
193
|
-
'BtnIcon',
|
|
194
|
-
'Logger',
|
|
195
|
-
'Css',
|
|
196
|
-
'NotificationManager',
|
|
197
|
-
'ToggleSwitch',
|
|
198
|
-
'DropDown',
|
|
199
|
-
'LoadingAnimation',
|
|
200
|
-
'EventsUI',
|
|
201
|
-
'AgGrid',
|
|
202
|
-
'Pagination',
|
|
203
|
-
'windowGetDimensions',
|
|
204
|
-
'Input',
|
|
205
|
-
'Validator',
|
|
206
|
-
'Polyhedron',
|
|
207
|
-
'SignUp',
|
|
208
|
-
'LogIn',
|
|
209
|
-
'LogOut',
|
|
210
|
-
'Router',
|
|
211
|
-
'Account',
|
|
212
|
-
'PublicProfile',
|
|
213
|
-
'Scroll',
|
|
214
|
-
'Auth',
|
|
215
|
-
'ViewModeController',
|
|
216
|
-
'CssCore',
|
|
217
|
-
'Worker',
|
|
218
|
-
'SocketIo',
|
|
219
|
-
'AppStore',
|
|
220
|
-
'SocketIoHandler',
|
|
221
|
-
'Chat',
|
|
222
|
-
'Webhook',
|
|
223
|
-
'Wallet',
|
|
224
|
-
'FileExplorer',
|
|
225
|
-
'Badge',
|
|
226
|
-
'ToolTip',
|
|
227
|
-
'Recover',
|
|
228
|
-
'RichText',
|
|
229
|
-
'Panel',
|
|
230
|
-
'Content',
|
|
231
|
-
'Docs',
|
|
232
|
-
'ColorPaletteElement',
|
|
233
|
-
'EventBus',
|
|
234
|
-
'ClientEvents',
|
|
235
|
-
'Repository',
|
|
236
|
-
],
|
|
237
|
-
'cyberia-portal': [
|
|
238
|
-
'AppShellCyberiaPortal',
|
|
239
|
-
'RouterCyberiaPortal',
|
|
240
|
-
'AppStoreCyberiaPortal',
|
|
241
|
-
'CssCyberiaPortal',
|
|
242
|
-
'LogInCyberiaPortal',
|
|
243
|
-
'LogOutCyberiaPortal',
|
|
244
|
-
'SignUpCyberiaPortal',
|
|
245
|
-
'TranslateCyberiaPortal',
|
|
246
|
-
'SettingsCyberiaPortal',
|
|
247
|
-
'SocketIoCyberiaPortal',
|
|
248
|
-
'MainBodyCyberiaPortal',
|
|
249
|
-
],
|
|
250
|
-
},
|
|
251
|
-
views: [
|
|
252
|
-
{ path: '/', title: 'Home', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
253
|
-
{ path: '/settings', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
254
|
-
{ path: '/log-in', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
255
|
-
{ path: '/sign-up', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
256
|
-
{ path: '/log-out', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
257
|
-
{ path: '/account', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
258
|
-
{ path: '/server', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
259
|
-
{ path: '/chat', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
260
|
-
{ path: '/recover', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
261
|
-
{ path: '/object-layer-engine', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
262
|
-
{ path: '/object-layer-engine-management', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
263
|
-
{ path: '/object-layer-engine-viewer', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
264
|
-
{ path: '/cyberia-map-engine', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
265
|
-
{ path: '/cyberia-instance-engine', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
266
|
-
{ path: '/docs', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
267
|
-
{ path: '/cyberia-action-engine', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
268
|
-
{ path: '/cyberia-entity-engine', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
269
|
-
{ path: '/instance-selection', title: 'Select World', client: 'CyberiaPortal', ssr: 'CyberiaPortal' },
|
|
270
|
-
],
|
|
271
|
-
dists: [
|
|
272
|
-
{
|
|
273
|
-
folder: './node_modules/@neodrag/vanilla/dist/min',
|
|
274
|
-
public_folder: '/dist/@neodrag-vanilla',
|
|
275
|
-
import_name: '@neodrag/vanilla',
|
|
276
|
-
import_name_build: '/dist/@neodrag-vanilla/index.js',
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
folder: './node_modules/socket.io/client-dist',
|
|
280
|
-
public_folder: '/dist/socket.io',
|
|
281
|
-
import_name: 'socket.io/client-dist/socket.io.esm.min.js',
|
|
282
|
-
import_name_build: '/dist/socket.io/socket.io.esm.min.js',
|
|
283
|
-
},
|
|
284
|
-
{ folder: './node_modules/@fortawesome/fontawesome-free', public_folder: '/dist/fontawesome' },
|
|
285
|
-
{
|
|
286
|
-
folder: './node_modules/sortablejs/modular',
|
|
287
|
-
public_folder: '/dist/sortablejs',
|
|
288
|
-
import_name: 'sortablejs',
|
|
289
|
-
import_name_build: '/dist/sortablejs/sortable.complete.esm.js',
|
|
290
|
-
},
|
|
291
|
-
{ folder: './node_modules/validator', public_folder: '/dist/validator' },
|
|
292
|
-
{
|
|
293
|
-
import_name: 'ag-grid-community',
|
|
294
|
-
import_name_build: '/dist/ag-grid-community/ag-grid-community.min.js',
|
|
295
|
-
folder: './node_modules/ag-grid-community/dist',
|
|
296
|
-
public_folder: '/dist/ag-grid-community',
|
|
297
|
-
styles: './node_modules/ag-grid-community/styles',
|
|
298
|
-
public_styles_folder: '/styles/ag-grid-community',
|
|
299
|
-
},
|
|
300
|
-
{ folder: './node_modules/easymde/dist', public_folder: '/dist/easymde' },
|
|
301
|
-
{
|
|
302
|
-
folder: './node_modules/vanilla-jsoneditor/standalone.js',
|
|
303
|
-
public_folder: '/dist/vanilla-jsoneditor/standalone.js',
|
|
304
|
-
import_name: 'vanilla-jsoneditor',
|
|
305
|
-
import_name_build: '/dist/vanilla-jsoneditor/standalone.js',
|
|
306
|
-
styles: './node_modules/vanilla-jsoneditor/themes',
|
|
307
|
-
public_styles_folder: '/styles/vanilla-jsoneditor',
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
folder: './node_modules/vanilla-jsoneditor/standalone.js.map',
|
|
311
|
-
public_folder: '/dist/vanilla-jsoneditor/standalone.js.map',
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
folder: './node_modules/dexie/dist',
|
|
315
|
-
public_folder: '/dist/dexie',
|
|
316
|
-
import_name: 'dexie',
|
|
317
|
-
import_name_build: '/dist/dexie/dexie.mjs',
|
|
318
|
-
},
|
|
319
|
-
],
|
|
320
|
-
services: [
|
|
321
|
-
'core',
|
|
322
|
-
'file',
|
|
323
|
-
'user',
|
|
324
|
-
'crypto',
|
|
325
|
-
'document',
|
|
326
|
-
'instance',
|
|
327
|
-
'object-layer',
|
|
328
|
-
'object-layer-render-frames',
|
|
329
|
-
'atlas-sprite-sheet',
|
|
330
|
-
'default',
|
|
331
|
-
'cyberia-entity',
|
|
332
|
-
'cyberia-map',
|
|
333
|
-
'cyberia-instance',
|
|
334
|
-
'cyberia-instance-conf',
|
|
335
|
-
'cyberia-dialogue',
|
|
336
|
-
'cyberia-quest',
|
|
337
|
-
'cyberia-quest-progress',
|
|
338
|
-
'cyberia-action',
|
|
339
|
-
'cyberia-skill',
|
|
340
|
-
'cyberia-entity-type-default',
|
|
341
|
-
'cyberia-client-hints',
|
|
342
|
-
'cyberia-saga',
|
|
343
|
-
],
|
|
344
|
-
},
|
|
345
|
-
cryptokoyn: {
|
|
346
|
-
metadata: {
|
|
347
|
-
title: 'Cryptokoyn',
|
|
348
|
-
description:
|
|
349
|
-
'Financial portal and token hub for CryptoKoyn (CKY) — the fungible ERC-1155 currency of the Cyberia Online ecosystem. Staking, governance, analytics, and wallet management.',
|
|
350
|
-
keywords: ['cryptokoyn', 'CKY', 'token', 'staking', 'governance', 'ERC-1155', 'wallet', 'blockchain'],
|
|
351
|
-
author: 'https://github.com/underpostnet',
|
|
352
|
-
thumbnail: 'assets/banner/koyn-social.png',
|
|
353
|
-
themeColor: '#E1DB07',
|
|
354
|
-
},
|
|
355
|
-
publicCopyNonExistingFiles: 'cyberia',
|
|
356
|
-
components: {
|
|
357
|
-
core: [
|
|
358
|
-
'CommonJs',
|
|
359
|
-
'VanillaJs',
|
|
360
|
-
'Responsive',
|
|
361
|
-
'Keyboard',
|
|
362
|
-
'Translate',
|
|
363
|
-
'Modal',
|
|
364
|
-
'SearchBox',
|
|
365
|
-
'BtnIcon',
|
|
366
|
-
'Logger',
|
|
367
|
-
'Css',
|
|
368
|
-
'NotificationManager',
|
|
369
|
-
'ToggleSwitch',
|
|
370
|
-
'DropDown',
|
|
371
|
-
'LoadingAnimation',
|
|
372
|
-
'EventsUI',
|
|
373
|
-
'AgGrid',
|
|
374
|
-
'Pagination',
|
|
375
|
-
'windowGetDimensions',
|
|
376
|
-
'Input',
|
|
377
|
-
'Validator',
|
|
378
|
-
'SignUp',
|
|
379
|
-
'LogIn',
|
|
380
|
-
'LogOut',
|
|
381
|
-
'Router',
|
|
382
|
-
'Account',
|
|
383
|
-
'PublicProfile',
|
|
384
|
-
'Scroll',
|
|
385
|
-
'Auth',
|
|
386
|
-
'ViewModeController',
|
|
387
|
-
'RichText',
|
|
388
|
-
'CalendarCore',
|
|
389
|
-
'D3Chart',
|
|
390
|
-
'Stream',
|
|
391
|
-
'SocketIo',
|
|
392
|
-
'Docs',
|
|
393
|
-
'Content',
|
|
394
|
-
'FileExplorer',
|
|
395
|
-
'Chat',
|
|
396
|
-
'Worker',
|
|
397
|
-
'CssCore',
|
|
398
|
-
'Wallet',
|
|
399
|
-
'Badge',
|
|
400
|
-
'ToolTip',
|
|
401
|
-
'Webhook',
|
|
402
|
-
'Recover',
|
|
403
|
-
'AppStore',
|
|
404
|
-
'SocketIoHandler',
|
|
405
|
-
'EventBus',
|
|
406
|
-
'ClientEvents',
|
|
407
|
-
'Repository',
|
|
408
|
-
],
|
|
409
|
-
cryptokoyn: [
|
|
410
|
-
'AppShellCryptokoyn',
|
|
411
|
-
'RouterCryptokoyn',
|
|
412
|
-
'AppStoreCryptokoyn',
|
|
413
|
-
'CssCryptokoyn',
|
|
414
|
-
'LogInCryptokoyn',
|
|
415
|
-
'LogOutCryptokoyn',
|
|
416
|
-
'SignUpCryptokoyn',
|
|
417
|
-
'SocketIoCryptokoyn',
|
|
418
|
-
'SettingsCryptokoyn',
|
|
419
|
-
],
|
|
420
|
-
},
|
|
421
|
-
views: [
|
|
422
|
-
{ path: '/', title: 'Home', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
423
|
-
{ path: '/settings', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
424
|
-
{ path: '/log-in', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
425
|
-
{ path: '/sign-up', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
426
|
-
{ path: '/log-out', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
427
|
-
{ path: '/account', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
428
|
-
{ path: '/wallet', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
429
|
-
{ path: '/recover', client: 'Cryptokoyn', ssr: 'Cryptokoyn' },
|
|
430
|
-
],
|
|
431
|
-
dists: [
|
|
432
|
-
{
|
|
433
|
-
folder: './node_modules/@neodrag/vanilla/dist/min',
|
|
434
|
-
public_folder: '/dist/@neodrag-vanilla',
|
|
435
|
-
import_name: '@neodrag/vanilla',
|
|
436
|
-
import_name_build: '/dist/@neodrag-vanilla/index.js',
|
|
437
|
-
},
|
|
438
|
-
{ folder: './node_modules/@fortawesome/fontawesome-free', public_folder: '/dist/fontawesome' },
|
|
439
|
-
{
|
|
440
|
-
folder: './node_modules/sortablejs/modular',
|
|
441
|
-
public_folder: '/dist/sortablejs',
|
|
442
|
-
import_name: 'sortablejs',
|
|
443
|
-
import_name_build: '/dist/sortablejs/sortable.complete.esm.js',
|
|
444
|
-
},
|
|
445
|
-
{ folder: './node_modules/validator', public_folder: '/dist/validator' },
|
|
446
|
-
{
|
|
447
|
-
import_name: 'ag-grid-community',
|
|
448
|
-
import_name_build: '/dist/ag-grid-community/ag-grid-community.min.js',
|
|
449
|
-
folder: './node_modules/ag-grid-community/dist',
|
|
450
|
-
public_folder: '/dist/ag-grid-community',
|
|
451
|
-
styles: './node_modules/ag-grid-community/styles',
|
|
452
|
-
public_styles_folder: '/styles/ag-grid-community',
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
folder: './node_modules/socket.io/client-dist',
|
|
456
|
-
public_folder: '/dist/socket.io',
|
|
457
|
-
import_name: 'socket.io/client-dist/socket.io.esm.min.js',
|
|
458
|
-
import_name_build: '/dist/socket.io/socket.io.esm.min.js',
|
|
459
|
-
},
|
|
460
|
-
{ folder: './node_modules/peerjs/dist', public_folder: '/dist/peerjs' },
|
|
461
|
-
{
|
|
462
|
-
folder: './node_modules/dexie/dist',
|
|
463
|
-
public_folder: '/dist/dexie',
|
|
464
|
-
import_name: 'dexie',
|
|
465
|
-
import_name_build: '/dist/dexie/dexie.mjs',
|
|
466
|
-
},
|
|
467
|
-
],
|
|
468
|
-
services: ['core', 'user', 'file', 'crypto'],
|
|
469
|
-
},
|
|
470
|
-
itemledger: {
|
|
471
|
-
metadata: {
|
|
472
|
-
title: 'Item Ledger',
|
|
473
|
-
description:
|
|
474
|
-
'Canonical registry, metadata resolver, and IPFS indexer for Object Layer items — semi-fungible and non-fungible ERC-1155 tokens in the Cyberia Online ecosystem. Item search, provenance, and marketplace.',
|
|
475
|
-
keywords: ['itemledger', 'object layer', 'NFT', 'ERC-1155', 'metadata', 'IPFS', 'registry', 'marketplace'],
|
|
476
|
-
author: 'https://github.com/underpostnet',
|
|
477
|
-
thumbnail: 'apple-touch-startup-image-1136x640.png',
|
|
478
|
-
themeColor: '#0551C4',
|
|
479
|
-
},
|
|
480
|
-
publicCopyNonExistingFiles: 'cyberia',
|
|
481
|
-
components: {
|
|
482
|
-
core: [
|
|
483
|
-
'CommonJs',
|
|
484
|
-
'VanillaJs',
|
|
485
|
-
'Responsive',
|
|
486
|
-
'Keyboard',
|
|
487
|
-
'Translate',
|
|
488
|
-
'Modal',
|
|
489
|
-
'SearchBox',
|
|
490
|
-
'BtnIcon',
|
|
491
|
-
'Logger',
|
|
492
|
-
'Css',
|
|
493
|
-
'NotificationManager',
|
|
494
|
-
'ToggleSwitch',
|
|
495
|
-
'DropDown',
|
|
496
|
-
'LoadingAnimation',
|
|
497
|
-
'EventsUI',
|
|
498
|
-
'AgGrid',
|
|
499
|
-
'Pagination',
|
|
500
|
-
'windowGetDimensions',
|
|
501
|
-
'Input',
|
|
502
|
-
'Validator',
|
|
503
|
-
'SignUp',
|
|
504
|
-
'LogIn',
|
|
505
|
-
'LogOut',
|
|
506
|
-
'Router',
|
|
507
|
-
'Account',
|
|
508
|
-
'PublicProfile',
|
|
509
|
-
'Scroll',
|
|
510
|
-
'Auth',
|
|
511
|
-
'ViewModeController',
|
|
512
|
-
'RichText',
|
|
513
|
-
'CalendarCore',
|
|
514
|
-
'D3Chart',
|
|
515
|
-
'Stream',
|
|
516
|
-
'SocketIo',
|
|
517
|
-
'Docs',
|
|
518
|
-
'Content',
|
|
519
|
-
'FileExplorer',
|
|
520
|
-
'Chat',
|
|
521
|
-
'Worker',
|
|
522
|
-
'CssCore',
|
|
523
|
-
'Wallet',
|
|
524
|
-
'Badge',
|
|
525
|
-
'ToolTip',
|
|
526
|
-
'Webhook',
|
|
527
|
-
'Recover',
|
|
528
|
-
'AppStore',
|
|
529
|
-
'SocketIoHandler',
|
|
530
|
-
'EventBus',
|
|
531
|
-
'ClientEvents',
|
|
532
|
-
'Repository',
|
|
533
|
-
],
|
|
534
|
-
itemledger: [
|
|
535
|
-
'AppShellItemledger',
|
|
536
|
-
'RouterItemledger',
|
|
537
|
-
'AppStoreItemledger',
|
|
538
|
-
'CssItemledger',
|
|
539
|
-
'LogInItemledger',
|
|
540
|
-
'LogOutItemledger',
|
|
541
|
-
'SignUpItemledger',
|
|
542
|
-
'SocketIoItemledger',
|
|
543
|
-
'SettingsItemledger',
|
|
544
|
-
'TranslateItemledger',
|
|
545
|
-
],
|
|
546
|
-
},
|
|
547
|
-
views: [
|
|
548
|
-
{ path: '/', title: 'Home', client: 'Itemledger', ssr: 'Itemledger' },
|
|
549
|
-
{ path: '/settings', client: 'Itemledger', ssr: 'Itemledger' },
|
|
550
|
-
{ path: '/log-in', client: 'Itemledger', ssr: 'Itemledger' },
|
|
551
|
-
{ path: '/sign-up', client: 'Itemledger', ssr: 'Itemledger' },
|
|
552
|
-
{ path: '/log-out', client: 'Itemledger', ssr: 'Itemledger' },
|
|
553
|
-
{ path: '/account', client: 'Itemledger', ssr: 'Itemledger' },
|
|
554
|
-
{ path: '/wallet', client: 'Itemledger', ssr: 'Itemledger' },
|
|
555
|
-
{ path: '/recover', client: 'Itemledger', ssr: 'Itemledger' },
|
|
556
|
-
],
|
|
557
|
-
dists: [
|
|
558
|
-
{
|
|
559
|
-
folder: './node_modules/@neodrag/vanilla/dist/min',
|
|
560
|
-
public_folder: '/dist/@neodrag-vanilla',
|
|
561
|
-
import_name: '@neodrag/vanilla',
|
|
562
|
-
import_name_build: '/dist/@neodrag-vanilla/index.js',
|
|
563
|
-
},
|
|
564
|
-
{ folder: './node_modules/@fortawesome/fontawesome-free', public_folder: '/dist/fontawesome' },
|
|
565
|
-
{
|
|
566
|
-
folder: './node_modules/sortablejs/modular',
|
|
567
|
-
public_folder: '/dist/sortablejs',
|
|
568
|
-
import_name: 'sortablejs',
|
|
569
|
-
import_name_build: '/dist/sortablejs/sortable.complete.esm.js',
|
|
570
|
-
},
|
|
571
|
-
{ folder: './node_modules/validator', public_folder: '/dist/validator' },
|
|
572
|
-
{
|
|
573
|
-
import_name: 'ag-grid-community',
|
|
574
|
-
import_name_build: '/dist/ag-grid-community/ag-grid-community.min.js',
|
|
575
|
-
folder: './node_modules/ag-grid-community/dist',
|
|
576
|
-
public_folder: '/dist/ag-grid-community',
|
|
577
|
-
styles: './node_modules/ag-grid-community/styles',
|
|
578
|
-
public_styles_folder: '/styles/ag-grid-community',
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
folder: './node_modules/socket.io/client-dist',
|
|
582
|
-
public_folder: '/dist/socket.io',
|
|
583
|
-
import_name: 'socket.io/client-dist/socket.io.esm.min.js',
|
|
584
|
-
import_name_build: '/dist/socket.io/socket.io.esm.min.js',
|
|
585
|
-
},
|
|
586
|
-
{ folder: './node_modules/peerjs/dist', public_folder: '/dist/peerjs' },
|
|
587
|
-
{
|
|
588
|
-
folder: './node_modules/dexie/dist',
|
|
589
|
-
public_folder: '/dist/dexie',
|
|
590
|
-
import_name: 'dexie',
|
|
591
|
-
import_name_build: '/dist/dexie/dexie.mjs',
|
|
592
|
-
},
|
|
593
|
-
],
|
|
594
|
-
services: ['core', 'user', 'file', 'crypto', 'default'],
|
|
595
|
-
},
|
|
596
|
-
},
|
|
597
|
-
ssr: {
|
|
598
|
-
Underpost: {
|
|
599
|
-
head: ['Seo', 'Pwa', 'UnderpostScripts', 'Css'],
|
|
600
|
-
body: ['CacheControl', 'UnderpostDefaultSplashScreen'],
|
|
601
|
-
mailer: { userVerifyEmail: 'DefaultVerifyEmail', userRecoverEmail: 'DefaultRecoverEmail' },
|
|
602
|
-
views: [
|
|
603
|
-
{
|
|
604
|
-
path: '/offline',
|
|
605
|
-
title: 'No Network Connection',
|
|
606
|
-
client: 'NoNetworkConnection',
|
|
607
|
-
head: [],
|
|
608
|
-
body: [],
|
|
609
|
-
offlineDefault: true,
|
|
610
|
-
},
|
|
611
|
-
{
|
|
612
|
-
path: '/maintenance',
|
|
613
|
-
title: 'Server Maintenance',
|
|
614
|
-
client: 'Maintenance',
|
|
615
|
-
head: [],
|
|
616
|
-
body: [],
|
|
617
|
-
maintenanceDefault: true,
|
|
618
|
-
},
|
|
619
|
-
{ path: '/test', title: 'Test', client: 'Test', head: [], body: [] },
|
|
620
|
-
],
|
|
621
|
-
},
|
|
622
|
-
CyberiaPortal: {
|
|
623
|
-
head: ['Seo', 'Pwa', 'Microdata', 'CyberiaPortalScripts', 'Css'],
|
|
624
|
-
body: ['CacheControl', 'CyberiaDefaultSplashScreen', 'SwaggerDarkMode'],
|
|
625
|
-
mailer: { userVerifyEmail: 'DefaultVerifyEmail', userRecoverEmail: 'DefaultRecoverEmail' },
|
|
626
|
-
views: [
|
|
627
|
-
{
|
|
628
|
-
path: '/offline',
|
|
629
|
-
title: 'No Network Connection',
|
|
630
|
-
client: 'NoNetworkConnection',
|
|
631
|
-
head: [],
|
|
632
|
-
body: [],
|
|
633
|
-
offlineDefault: true,
|
|
634
|
-
},
|
|
635
|
-
{
|
|
636
|
-
path: '/maintenance',
|
|
637
|
-
title: 'Server Maintenance',
|
|
638
|
-
client: 'Maintenance',
|
|
639
|
-
head: [],
|
|
640
|
-
body: [],
|
|
641
|
-
maintenanceDefault: true,
|
|
642
|
-
},
|
|
643
|
-
{ path: '/test', title: 'Test', client: 'Test', head: [], body: [] },
|
|
644
|
-
{ path: '/404', title: '404 Instance Not Found', client: 'Cyberia404', head: [], body: [] },
|
|
645
|
-
],
|
|
646
|
-
},
|
|
647
|
-
Cryptokoyn: {
|
|
648
|
-
head: ['Seo', 'Pwa', 'Microdata', 'CryptokoynScripts', 'Css'],
|
|
649
|
-
body: ['CacheControl', 'DefaultSplashScreen'],
|
|
650
|
-
mailer: { userVerifyEmail: 'DefaultVerifyEmail', userRecoverEmail: 'DefaultRecoverEmail' },
|
|
651
|
-
views: [
|
|
652
|
-
{
|
|
653
|
-
path: '/offline',
|
|
654
|
-
title: 'No Network Connection',
|
|
655
|
-
client: 'NoNetworkConnection',
|
|
656
|
-
head: [],
|
|
657
|
-
body: [],
|
|
658
|
-
offlineDefault: true,
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
path: '/maintenance',
|
|
662
|
-
title: 'Server Maintenance',
|
|
663
|
-
client: 'Maintenance',
|
|
664
|
-
head: [],
|
|
665
|
-
body: [],
|
|
666
|
-
maintenanceDefault: true,
|
|
667
|
-
},
|
|
668
|
-
{ path: '/test', title: 'Test', client: 'Test', head: [], body: [] },
|
|
669
|
-
],
|
|
670
|
-
},
|
|
671
|
-
Itemledger: {
|
|
672
|
-
head: ['Seo', 'PwaItemledger', 'Microdata', 'ItemledgerScripts', 'Css'],
|
|
673
|
-
body: ['CacheControl', 'DefaultSplashScreen'],
|
|
674
|
-
mailer: { userVerifyEmail: 'DefaultVerifyEmail', userRecoverEmail: 'DefaultRecoverEmail' },
|
|
675
|
-
views: [
|
|
676
|
-
{
|
|
677
|
-
path: '/offline',
|
|
678
|
-
title: 'No Network Connection',
|
|
679
|
-
client: 'NoNetworkConnection',
|
|
680
|
-
head: [],
|
|
681
|
-
body: [],
|
|
682
|
-
offlineDefault: true,
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
path: '/maintenance',
|
|
686
|
-
title: 'Server Maintenance',
|
|
687
|
-
client: 'Maintenance',
|
|
688
|
-
head: [],
|
|
689
|
-
body: [],
|
|
690
|
-
maintenanceDefault: true,
|
|
691
|
-
},
|
|
692
|
-
{ path: '/test', title: 'Test', client: 'Test', head: [], body: [] },
|
|
693
|
-
],
|
|
694
|
-
},
|
|
695
|
-
},
|
|
696
|
-
server: {
|
|
697
|
-
'underpost.net': {
|
|
698
|
-
'/': {
|
|
699
|
-
client: 'underpost',
|
|
700
|
-
runtime: 'nodejs',
|
|
701
|
-
apis: ['user', 'file', 'test', 'document'],
|
|
702
|
-
apiBaseProxyPath: null,
|
|
703
|
-
apiBaseHost: null,
|
|
704
|
-
origins: [],
|
|
705
|
-
ws: 'core',
|
|
706
|
-
peer: true,
|
|
707
|
-
proxy: [80, 443],
|
|
708
|
-
db: {
|
|
709
|
-
provider: 'mongoose',
|
|
710
|
-
host: 'env:DB_HOST',
|
|
711
|
-
name: 'env:DB_NAME_NEXODEV',
|
|
712
|
-
replicaSet: 'env:DB_REPLICA_SET:rs0',
|
|
713
|
-
authSource: 'env:DB_AUTH_SOURCE:admin',
|
|
714
|
-
user: 'env:DB_USER:',
|
|
715
|
-
password: 'env:DB_PASSWORD:',
|
|
716
|
-
},
|
|
717
|
-
valkey: { port: 'env:VALKEY_PORT', host: 'env:VALKEY_HOST' },
|
|
718
|
-
mailer: {
|
|
719
|
-
sender: { email: 'env:MAILER_SENDER_EMAIL', name: 'env:MAILER_SENDER_NAME' },
|
|
720
|
-
transport: {
|
|
721
|
-
host: 'env:SMTP_HOST',
|
|
722
|
-
port: 'env:SMTP_PORT',
|
|
723
|
-
secure: true,
|
|
724
|
-
auth: { user: 'env:SMTP_AUTH_USER', pass: 'env:SMTP_AUTH_PASS' },
|
|
725
|
-
},
|
|
726
|
-
},
|
|
727
|
-
},
|
|
728
|
-
},
|
|
729
|
-
'www.underpost.net': {
|
|
730
|
-
'/': {
|
|
731
|
-
client: null,
|
|
732
|
-
runtime: 'nodejs',
|
|
733
|
-
apis: [],
|
|
734
|
-
origins: [],
|
|
735
|
-
proxy: [80, 443],
|
|
736
|
-
redirect: 'https://underpost.net',
|
|
737
|
-
},
|
|
738
|
-
},
|
|
739
|
-
'www.cyberiaonline.com': {
|
|
740
|
-
'/': {
|
|
741
|
-
client: 'cyberia-portal',
|
|
742
|
-
runtime: 'nodejs',
|
|
743
|
-
apis: [
|
|
744
|
-
'core',
|
|
745
|
-
'file',
|
|
746
|
-
'user',
|
|
747
|
-
'crypto',
|
|
748
|
-
'document',
|
|
749
|
-
'instance',
|
|
750
|
-
'object-layer',
|
|
751
|
-
'object-layer-render-frames',
|
|
752
|
-
'atlas-sprite-sheet',
|
|
753
|
-
'ipfs',
|
|
754
|
-
'cyberia-entity',
|
|
755
|
-
'cyberia-map',
|
|
756
|
-
'cyberia-instance',
|
|
757
|
-
'cyberia-instance-conf',
|
|
758
|
-
'cyberia-dialogue',
|
|
759
|
-
'cyberia-quest',
|
|
760
|
-
'cyberia-quest-progress',
|
|
761
|
-
'cyberia-action',
|
|
762
|
-
'cyberia-skill',
|
|
763
|
-
'cyberia-entity-type-default',
|
|
764
|
-
'cyberia-client-hints',
|
|
765
|
-
'cyberia-saga',
|
|
766
|
-
'cyberia-audio',
|
|
767
|
-
'cyberia-map-audio-conf',
|
|
768
|
-
],
|
|
769
|
-
ws: 'core',
|
|
770
|
-
peer: true,
|
|
771
|
-
docs: {
|
|
772
|
-
jsJsonPath: './typedoc.dd-cyberia.json',
|
|
773
|
-
coverage: [
|
|
774
|
-
{ id: 'cyberia', label: 'Cyberia coverage', suite: 'cyberia' },
|
|
775
|
-
{ id: 'hardhat', label: 'Hardhat coverage', path: './hardhat' },
|
|
776
|
-
],
|
|
777
|
-
references: [
|
|
778
|
-
'./src/client/public/cyberia-docs/CYBERIA.md',
|
|
779
|
-
'./src/client/public/cyberia-docs/WHITE-PAPER.md',
|
|
780
|
-
'./src/client/public/cyberia-docs/ARCHITECTURE.md',
|
|
781
|
-
'./src/client/public/cyberia-docs/QUEST-SYSTEM.md',
|
|
782
|
-
'./src/client/public/cyberia-docs/ACTION-SYSTEM.md',
|
|
783
|
-
'./src/client/public/cyberia-docs/ENTITY-PROFILE.md',
|
|
784
|
-
'./src/client/public/cyberia-docs/STATS-PROGRESSION.md',
|
|
785
|
-
'./src/client/public/cyberia-docs/OFF-CHAIN-ECONOMY.md',
|
|
786
|
-
'./src/client/public/cyberia-docs/HARDHAT-MODULE.md',
|
|
787
|
-
'./src/client/public/cyberia-docs/CYBERIA-SERVER.md',
|
|
788
|
-
'./src/client/public/cyberia-docs/CYBERIA-CLIENT.md',
|
|
789
|
-
'./src/client/public/cyberia-docs/CYBERIA-CLI.md',
|
|
790
|
-
'./src/client/public/cyberia-docs/CYBERIA-LORE.md',
|
|
791
|
-
'./src/client/public/cyberia-docs/CYBERIA-SAGA.md',
|
|
792
|
-
'./src/client/public/cyberia-docs/ROADMAP.md',
|
|
793
|
-
'./src/client/public/cyberia-docs/UNDERPOST-PLATFORM.md',
|
|
794
|
-
],
|
|
795
|
-
},
|
|
796
|
-
origins: [
|
|
797
|
-
'https://www.cyberiaonline.com',
|
|
798
|
-
'https://server.cyberiaonline.com',
|
|
799
|
-
'https://client.cyberiaonline.com',
|
|
800
|
-
],
|
|
801
|
-
proxy: [80, 443],
|
|
802
|
-
db: {
|
|
803
|
-
provider: 'mongoose',
|
|
804
|
-
host: 'env:DB_HOST',
|
|
805
|
-
name: 'env:DB_NAME_CYBERIA',
|
|
806
|
-
replicaSet: 'env:DB_REPLICA_SET:rs0',
|
|
807
|
-
authSource: 'env:DB_AUTH_SOURCE:admin',
|
|
808
|
-
user: 'env:DB_USER:',
|
|
809
|
-
password: 'env:DB_PASSWORD:',
|
|
810
|
-
},
|
|
811
|
-
valkey: { port: 'env:VALKEY_PORT', host: 'env:VALKEY_HOST' },
|
|
812
|
-
mailer: {
|
|
813
|
-
sender: { email: 'env:MAILER_SENDER_EMAIL_CYBERIA', name: 'env:MAILER_SENDER_NAME_CYBERIA' },
|
|
814
|
-
transport: {
|
|
815
|
-
host: 'env:SMTP_HOST_CYBERIA',
|
|
816
|
-
port: 'env:SMTP_PORT_CYBERIA',
|
|
817
|
-
secure: true,
|
|
818
|
-
auth: { user: 'env:SMTP_AUTH_USER_CYBERIA', pass: 'env:SMTP_AUTH_PASS_CYBERIA' },
|
|
819
|
-
},
|
|
820
|
-
},
|
|
821
|
-
grpc: { module: 'cyberia', port: 50051 },
|
|
822
|
-
},
|
|
823
|
-
},
|
|
824
|
-
'cyberiaonline.com': {
|
|
825
|
-
'/': {
|
|
826
|
-
client: null,
|
|
827
|
-
apis: [],
|
|
828
|
-
runtime: 'nodejs',
|
|
829
|
-
origins: [],
|
|
830
|
-
redirect: 'https://www.cyberiaonline.com',
|
|
831
|
-
proxy: [80, 443],
|
|
832
|
-
},
|
|
833
|
-
},
|
|
834
|
-
'cryptokoyn.net': {
|
|
835
|
-
'/': {
|
|
836
|
-
client: 'cryptokoyn',
|
|
837
|
-
runtime: 'nodejs',
|
|
838
|
-
apis: [
|
|
839
|
-
'core',
|
|
840
|
-
'file',
|
|
841
|
-
'user',
|
|
842
|
-
'crypto',
|
|
843
|
-
'document',
|
|
844
|
-
'instance',
|
|
845
|
-
'object-layer',
|
|
846
|
-
'object-layer-render-frames',
|
|
847
|
-
'atlas-sprite-sheet',
|
|
848
|
-
'ipfs',
|
|
849
|
-
'cyberia-quest',
|
|
850
|
-
'cyberia-quest-progress',
|
|
851
|
-
'cyberia-action',
|
|
852
|
-
'cyberia-skill',
|
|
853
|
-
'cyberia-entity-type-default',
|
|
854
|
-
],
|
|
855
|
-
origins: [],
|
|
856
|
-
ws: 'core',
|
|
857
|
-
peer: true,
|
|
858
|
-
proxy: [80, 443],
|
|
859
|
-
db: {
|
|
860
|
-
provider: 'mongoose',
|
|
861
|
-
host: 'env:DB_HOST',
|
|
862
|
-
name: 'env:DB_NAME_CRYPTOKOYN',
|
|
863
|
-
replicaSet: 'env:DB_REPLICA_SET:rs0',
|
|
864
|
-
authSource: 'env:DB_AUTH_SOURCE:admin',
|
|
865
|
-
user: 'env:DB_USER:',
|
|
866
|
-
password: 'env:DB_PASSWORD:',
|
|
867
|
-
},
|
|
868
|
-
valkey: { port: 'env:VALKEY_PORT', host: 'env:VALKEY_HOST' },
|
|
869
|
-
mailer: {
|
|
870
|
-
sender: { email: 'env:MAILER_SENDER_EMAIL', name: 'env:MAILER_SENDER_NAME' },
|
|
871
|
-
transport: {
|
|
872
|
-
host: 'env:SMTP_HOST',
|
|
873
|
-
port: 'env:SMTP_PORT',
|
|
874
|
-
secure: true,
|
|
875
|
-
auth: { user: 'env:SMTP_AUTH_USER', pass: 'env:SMTP_AUTH_PASS' },
|
|
876
|
-
},
|
|
877
|
-
},
|
|
878
|
-
},
|
|
879
|
-
},
|
|
880
|
-
'www.cryptokoyn.net': {
|
|
881
|
-
'/': {
|
|
882
|
-
client: null,
|
|
883
|
-
runtime: 'nodejs',
|
|
884
|
-
apis: [],
|
|
885
|
-
origins: [],
|
|
886
|
-
proxy: [80, 443],
|
|
887
|
-
redirect: 'https://cryptokoyn.net',
|
|
888
|
-
},
|
|
889
|
-
},
|
|
890
|
-
'itemledger.com': {
|
|
891
|
-
'/': {
|
|
892
|
-
client: 'itemledger',
|
|
893
|
-
runtime: 'nodejs',
|
|
894
|
-
apis: [
|
|
895
|
-
'core',
|
|
896
|
-
'file',
|
|
897
|
-
'user',
|
|
898
|
-
'crypto',
|
|
899
|
-
'document',
|
|
900
|
-
'instance',
|
|
901
|
-
'object-layer',
|
|
902
|
-
'object-layer-render-frames',
|
|
903
|
-
'atlas-sprite-sheet',
|
|
904
|
-
'ipfs',
|
|
905
|
-
'cyberia-quest',
|
|
906
|
-
'cyberia-quest-progress',
|
|
907
|
-
'cyberia-action',
|
|
908
|
-
'cyberia-skill',
|
|
909
|
-
'cyberia-entity-type-default',
|
|
910
|
-
],
|
|
911
|
-
origins: [],
|
|
912
|
-
ws: 'core',
|
|
913
|
-
peer: true,
|
|
914
|
-
proxy: [80, 443],
|
|
915
|
-
db: {
|
|
916
|
-
provider: 'mongoose',
|
|
917
|
-
host: 'env:DB_HOST',
|
|
918
|
-
name: 'env:DB_NAME_ITEMLEDGER',
|
|
919
|
-
replicaSet: 'env:DB_REPLICA_SET:rs0',
|
|
920
|
-
authSource: 'env:DB_AUTH_SOURCE:admin',
|
|
921
|
-
user: 'env:DB_USER:',
|
|
922
|
-
password: 'env:DB_PASSWORD:',
|
|
923
|
-
},
|
|
924
|
-
valkey: { port: 'env:VALKEY_PORT', host: 'env:VALKEY_HOST' },
|
|
925
|
-
mailer: {
|
|
926
|
-
sender: { email: 'env:MAILER_SENDER_EMAIL', name: 'env:MAILER_SENDER_NAME' },
|
|
927
|
-
transport: {
|
|
928
|
-
host: 'env:SMTP_HOST',
|
|
929
|
-
port: 'env:SMTP_PORT',
|
|
930
|
-
secure: true,
|
|
931
|
-
auth: { user: 'env:SMTP_AUTH_USER', pass: 'env:SMTP_AUTH_PASS' },
|
|
932
|
-
},
|
|
933
|
-
},
|
|
934
|
-
},
|
|
935
|
-
},
|
|
936
|
-
'www.itemledger.com': {
|
|
937
|
-
'/': {
|
|
938
|
-
client: null,
|
|
939
|
-
runtime: 'nodejs',
|
|
940
|
-
apis: [],
|
|
941
|
-
origins: [],
|
|
942
|
-
proxy: [80, 443],
|
|
943
|
-
redirect: 'https://itemledger.com',
|
|
944
|
-
},
|
|
945
|
-
},
|
|
946
|
-
},
|
|
947
|
-
cron: {
|
|
948
|
-
records: {
|
|
949
|
-
A: [
|
|
950
|
-
{
|
|
951
|
-
host: 'env:DDNS_HOST:example.com',
|
|
952
|
-
dns: 'env:DDNS_PROVIDER:dondominio',
|
|
953
|
-
api_key: 'env:DDNS_API_KEY:',
|
|
954
|
-
user: 'env:DDNS_USER:',
|
|
955
|
-
},
|
|
956
|
-
],
|
|
957
|
-
},
|
|
958
|
-
jobs: {
|
|
959
|
-
dns: { expression: '* * * * *', enabled: true, instances: 1 },
|
|
960
|
-
backups: { expression: '0 1 * * *', enabled: true, instances: 1 },
|
|
961
|
-
},
|
|
962
|
-
},
|
|
963
|
-
wireguard: {
|
|
964
|
-
'00.000.00.000': {
|
|
965
|
-
interfaceName: 'wg0',
|
|
966
|
-
listenPort: 51820,
|
|
967
|
-
address: '10.0.0.1/24',
|
|
968
|
-
publicKey: '',
|
|
969
|
-
sshForwardPort: 2222,
|
|
970
|
-
peers: [
|
|
971
|
-
{
|
|
972
|
-
id: 'homelab-a',
|
|
973
|
-
address: '10.0.0.2',
|
|
974
|
-
managementHost: '192.168.1.80',
|
|
975
|
-
publicKey: '',
|
|
976
|
-
allowedIPs: ['10.0.0.2/32'],
|
|
977
|
-
hosts: [],
|
|
978
|
-
instances: [],
|
|
979
|
-
default: true,
|
|
980
|
-
},
|
|
981
|
-
],
|
|
982
|
-
},
|
|
983
|
-
},
|
|
984
|
-
event: {
|
|
985
|
-
'notification-providers': {
|
|
986
|
-
'default-cluster-mailer-provider': {
|
|
987
|
-
type: 'mailer',
|
|
988
|
-
mailer: {
|
|
989
|
-
sender: { email: 'env:CLUSTER_MAILER_SENDER_EMAIL', name: 'env:CLUSTER_MAILER_SENDER_NAME:Underpost' },
|
|
990
|
-
transport: {
|
|
991
|
-
host: 'env:CLUSTER_MAILER_SMTP_HOST',
|
|
992
|
-
port: 'env:CLUSTER_MAILER_SMTP_PORT:int:587',
|
|
993
|
-
secure: 'env:CLUSTER_MAILER_SMTP_SECURE:bool:false',
|
|
994
|
-
auth: { user: 'env:CLUSTER_MAILER_SMTP_AUTH_USER', pass: 'env:CLUSTER_MAILER_SMTP_AUTH_PASS' },
|
|
995
|
-
},
|
|
996
|
-
},
|
|
997
|
-
},
|
|
998
|
-
},
|
|
999
|
-
events: {
|
|
1000
|
-
'wireguard-server-down': {
|
|
1001
|
-
probeInterval: '30s',
|
|
1002
|
-
alertFor: '5m',
|
|
1003
|
-
notifications: [
|
|
1004
|
-
{
|
|
1005
|
-
'notification-provider-id': 'default-cluster-mailer-provider',
|
|
1006
|
-
payload: { subscribers: [{ email: 'admin@default.net', name: 'Admin' }] },
|
|
1007
|
-
},
|
|
1008
|
-
],
|
|
1009
|
-
},
|
|
1010
|
-
'wireguard-spoke-down': {
|
|
1011
|
-
probeInterval: '30s',
|
|
1012
|
-
alertFor: '2m',
|
|
1013
|
-
notifications: [
|
|
1014
|
-
{
|
|
1015
|
-
'notification-provider-id': 'default-cluster-mailer-provider',
|
|
1016
|
-
payload: { subscribers: [{ email: 'admin@default.net', name: 'Admin' }] },
|
|
1017
|
-
},
|
|
1018
|
-
],
|
|
1019
|
-
},
|
|
1020
|
-
'public-ingress-down': {
|
|
1021
|
-
probeInterval: '5m',
|
|
1022
|
-
alertFor: '5m',
|
|
1023
|
-
notifications: [
|
|
1024
|
-
{
|
|
1025
|
-
'notification-provider-id': 'default-cluster-mailer-provider',
|
|
1026
|
-
payload: { subscribers: [{ email: 'admin@default.net', name: 'Admin' }] },
|
|
1027
|
-
},
|
|
1028
|
-
],
|
|
1029
|
-
},
|
|
1030
|
-
},
|
|
1031
|
-
},
|
|
1032
|
-
users: [
|
|
1033
|
-
{
|
|
1034
|
-
user: 'root',
|
|
1035
|
-
password: '',
|
|
1036
|
-
groups: 'wheel',
|
|
1037
|
-
keyPath: './engine-private/deploy/id_rsa',
|
|
1038
|
-
pubKeyPath: './engine-private/deploy/id_rsa.pub',
|
|
1039
|
-
hosts: [{ host: '00.000.00.000', port: 22 }],
|
|
1040
|
-
},
|
|
1041
|
-
],
|
|
1042
|
-
}; /**/
|
|
1
|
+
const DefaultConf = /**/{"client":{"underpost":{"metadata":{"title":"Underpost Platform | Tech Lab for Infrastructure, Orchestration and Runtime","description":"Engineering logs and system development for Underpost Platform: cloud infrastructure, orchestration, CI/CD, containers, and real-time runtime applications.","keywords":["Underpost Platform","tech lab","infrastructure orchestration","cloud platform","CI/CD","containers","Kubernetes","LXD","runtime applications","development logs","Node.js","WebAssembly","real-time systems","MMO engine"],"author":"https://github.com/underpostnet","thumbnail":"assets/banner/underpost-social.jpg","themeColor":"#141414"},"publicCopyNonExistingFiles":"cyberia","components":{"core":["CommonJs","VanillaJs","Responsive","Keyboard","Translate","Modal","SearchBox","BtnIcon","Logger","Css","NotificationManager","ToggleSwitch","DropDown","LoadingAnimation","EventsUI","AgGrid","Pagination","windowGetDimensions","Input","Validator","SignUp","LogIn","LogOut","Router","Account","PublicProfile","Scroll","Auth","ViewModeController","RichText","CalendarCore","D3Chart","Stream","SocketIo","Docs","Content","FileExplorer","Chat","Worker","CssCore","Wallet","Badge","ToolTip","Webhook","Recover","Panel","PanelForm","Polyhedron","AppStore","SocketIoHandler","EventBus","ClientEvents","Repository"],"underpost":["AppShellUnderpost","RouterUnderpost","AppStoreUnderpost","CssUnderpost","LogInUnderpost","LogOutUnderpost","SignUpUnderpost","LabGalleryUnderpost","CyberpunkBloggerUnderpost","TranslateUnderpost","SocketIoUnderpost","SettingsUnderpost","DocumentSearchProvider"]},"views":[{"path":"/","title":"Technological and Cultural Lab","client":"Underpost","ssr":"Underpost"},{"path":"/lab-gallery","client":"Underpost","ssr":"Underpost"},{"path":"/contracultura-cyberpunk","client":"Underpost","ssr":"Underpost"},{"path":"/settings","client":"Underpost","ssr":"Underpost"},{"path":"/log-in","client":"Underpost","ssr":"Underpost"},{"path":"/sign-up","client":"Underpost","ssr":"Underpost"},{"path":"/log-out","client":"Underpost","ssr":"Underpost"},{"path":"/account","client":"Underpost","ssr":"Underpost"},{"path":"/u","client":"Underpost","ssr":"Underpost"},{"path":"/recover","client":"Underpost","ssr":"Underpost"},{"path":"/content","client":"Underpost","ssr":"Underpost"},{"path":"/cloud","client":"Underpost","ssr":"Underpost"},{"path":"/polyhedron","client":"Underpost","ssr":"Underpost"}],"dists":[{"folder":"./node_modules/@neodrag/vanilla/dist/min","public_folder":"/dist/@neodrag-vanilla","import_name":"@neodrag/vanilla","import_name_build":"/dist/@neodrag-vanilla/index.js"},{"folder":"./node_modules/@fortawesome/fontawesome-free","public_folder":"/dist/fontawesome"},{"folder":"./node_modules/sortablejs/modular","public_folder":"/dist/sortablejs","import_name":"sortablejs","import_name_build":"/dist/sortablejs/sortable.complete.esm.js"},{"folder":"./node_modules/validator","public_folder":"/dist/validator"},{"import_name":"ag-grid-community","import_name_build":"/dist/ag-grid-community/ag-grid-community.min.js","folder":"./node_modules/ag-grid-community/dist","public_folder":"/dist/ag-grid-community","styles":"./node_modules/ag-grid-community/styles","public_styles_folder":"/styles/ag-grid-community"},{"folder":"./node_modules/socket.io/client-dist","public_folder":"/dist/socket.io","import_name":"socket.io/client-dist/socket.io.esm.min.js","import_name_build":"/dist/socket.io/socket.io.esm.min.js"},{"folder":"./node_modules/peerjs/dist","public_folder":"/dist/peerjs"},{"folder":"./node_modules/easymde/dist","public_folder":"/dist/easymde"},{"folder":"./node_modules/marked/lib","public_folder":"/dist/marked","import_name":"marked","import_name_build":"/dist/marked/marked.esm.js"},{"folder":"./node_modules/dexie/dist","public_folder":"/dist/dexie","import_name":"dexie","import_name_build":"/dist/dexie/dexie.mjs"}],"services":["core","user","file","test","document"]},"cyberia-portal":{"metadata":{"title":"CYBERIA","description":"Browser massively multiplayer online role-playing game. Explore a dynamic online sandbox pixel art universe, right from your browser.","keywords":["cyberia","MMORPG","browser","free","MMO"],"author":"https://github.com/underpostnet","thumbnail":"assets/splash/CYBERIA.jpg","themeColor":"#1a1a1a"},"publicRef":"cyberia","components":{"cyberia":["SharedDefaultsCyberia","MapEngineCyberia","ObjectLayerEngine","ObjectLayerEngineModal","ObjectLayerEngineViewer","InstanceEngineCyberia","ActionEngineCyberia","EntityEngineCyberia","InstanceSelectionView"],"core":["CommonJs","VanillaJs","Responsive","Keyboard","Translate","Modal","SearchBox","BtnIcon","Logger","Css","NotificationManager","ToggleSwitch","DropDown","LoadingAnimation","EventsUI","AgGrid","Pagination","windowGetDimensions","Input","Validator","Polyhedron","SignUp","LogIn","LogOut","Router","Account","PublicProfile","Scroll","Auth","ViewModeController","CssCore","Worker","SocketIo","AppStore","SocketIoHandler","Chat","Webhook","Wallet","FileExplorer","Badge","ToolTip","Recover","RichText","Panel","Content","Docs","ColorPaletteElement","EventBus","ClientEvents","Repository"],"cyberia-portal":["AppShellCyberiaPortal","RouterCyberiaPortal","AppStoreCyberiaPortal","CssCyberiaPortal","LogInCyberiaPortal","LogOutCyberiaPortal","SignUpCyberiaPortal","TranslateCyberiaPortal","SettingsCyberiaPortal","SocketIoCyberiaPortal","MainBodyCyberiaPortal"]},"views":[{"path":"/","title":"Home","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/settings","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/log-in","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/sign-up","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/log-out","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/account","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/server","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/chat","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/recover","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/object-layer-engine","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/object-layer-engine-management","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/object-layer-engine-viewer","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/cyberia-map-engine","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/cyberia-instance-engine","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/docs","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/cyberia-action-engine","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/cyberia-entity-engine","client":"CyberiaPortal","ssr":"CyberiaPortal"},{"path":"/instance-selection","title":"Select World","client":"CyberiaPortal","ssr":"CyberiaPortal"}],"dists":[{"folder":"./node_modules/@neodrag/vanilla/dist/min","public_folder":"/dist/@neodrag-vanilla","import_name":"@neodrag/vanilla","import_name_build":"/dist/@neodrag-vanilla/index.js"},{"folder":"./node_modules/socket.io/client-dist","public_folder":"/dist/socket.io","import_name":"socket.io/client-dist/socket.io.esm.min.js","import_name_build":"/dist/socket.io/socket.io.esm.min.js"},{"folder":"./node_modules/@fortawesome/fontawesome-free","public_folder":"/dist/fontawesome"},{"folder":"./node_modules/sortablejs/modular","public_folder":"/dist/sortablejs","import_name":"sortablejs","import_name_build":"/dist/sortablejs/sortable.complete.esm.js"},{"folder":"./node_modules/validator","public_folder":"/dist/validator"},{"import_name":"ag-grid-community","import_name_build":"/dist/ag-grid-community/ag-grid-community.min.js","folder":"./node_modules/ag-grid-community/dist","public_folder":"/dist/ag-grid-community","styles":"./node_modules/ag-grid-community/styles","public_styles_folder":"/styles/ag-grid-community"},{"folder":"./node_modules/easymde/dist","public_folder":"/dist/easymde"},{"folder":"./node_modules/vanilla-jsoneditor/standalone.js","public_folder":"/dist/vanilla-jsoneditor/standalone.js","import_name":"vanilla-jsoneditor","import_name_build":"/dist/vanilla-jsoneditor/standalone.js","styles":"./node_modules/vanilla-jsoneditor/themes","public_styles_folder":"/styles/vanilla-jsoneditor"},{"folder":"./node_modules/vanilla-jsoneditor/standalone.js.map","public_folder":"/dist/vanilla-jsoneditor/standalone.js.map"},{"folder":"./node_modules/dexie/dist","public_folder":"/dist/dexie","import_name":"dexie","import_name_build":"/dist/dexie/dexie.mjs"}],"services":["core","file","user","crypto","document","instance","object-layer","object-layer-render-frames","atlas-sprite-sheet","default","cyberia-entity","cyberia-map","cyberia-instance","cyberia-instance-conf","cyberia-dialogue","cyberia-quest","cyberia-quest-progress","cyberia-action","cyberia-skill","cyberia-entity-type-default","cyberia-client-hints","cyberia-saga"]},"cryptokoyn":{"metadata":{"title":"Cryptokoyn","description":"Financial portal and token hub for CryptoKoyn (CKY) — the fungible ERC-1155 currency of the Cyberia Online ecosystem. Staking, governance, analytics, and wallet management.","keywords":["cryptokoyn","CKY","token","staking","governance","ERC-1155","wallet","blockchain"],"author":"https://github.com/underpostnet","thumbnail":"assets/banner/koyn-social.png","themeColor":"#E1DB07"},"publicCopyNonExistingFiles":"cyberia","components":{"core":["CommonJs","VanillaJs","Responsive","Keyboard","Translate","Modal","SearchBox","BtnIcon","Logger","Css","NotificationManager","ToggleSwitch","DropDown","LoadingAnimation","EventsUI","AgGrid","Pagination","windowGetDimensions","Input","Validator","SignUp","LogIn","LogOut","Router","Account","PublicProfile","Scroll","Auth","ViewModeController","RichText","CalendarCore","D3Chart","Stream","SocketIo","Docs","Content","FileExplorer","Chat","Worker","CssCore","Wallet","Badge","ToolTip","Webhook","Recover","AppStore","SocketIoHandler","EventBus","ClientEvents","Repository"],"cryptokoyn":["AppShellCryptokoyn","RouterCryptokoyn","AppStoreCryptokoyn","CssCryptokoyn","LogInCryptokoyn","LogOutCryptokoyn","SignUpCryptokoyn","SocketIoCryptokoyn","SettingsCryptokoyn"]},"views":[{"path":"/","title":"Home","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/settings","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/log-in","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/sign-up","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/log-out","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/account","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/wallet","client":"Cryptokoyn","ssr":"Cryptokoyn"},{"path":"/recover","client":"Cryptokoyn","ssr":"Cryptokoyn"}],"dists":[{"folder":"./node_modules/@neodrag/vanilla/dist/min","public_folder":"/dist/@neodrag-vanilla","import_name":"@neodrag/vanilla","import_name_build":"/dist/@neodrag-vanilla/index.js"},{"folder":"./node_modules/@fortawesome/fontawesome-free","public_folder":"/dist/fontawesome"},{"folder":"./node_modules/sortablejs/modular","public_folder":"/dist/sortablejs","import_name":"sortablejs","import_name_build":"/dist/sortablejs/sortable.complete.esm.js"},{"folder":"./node_modules/validator","public_folder":"/dist/validator"},{"import_name":"ag-grid-community","import_name_build":"/dist/ag-grid-community/ag-grid-community.min.js","folder":"./node_modules/ag-grid-community/dist","public_folder":"/dist/ag-grid-community","styles":"./node_modules/ag-grid-community/styles","public_styles_folder":"/styles/ag-grid-community"},{"folder":"./node_modules/socket.io/client-dist","public_folder":"/dist/socket.io","import_name":"socket.io/client-dist/socket.io.esm.min.js","import_name_build":"/dist/socket.io/socket.io.esm.min.js"},{"folder":"./node_modules/peerjs/dist","public_folder":"/dist/peerjs"},{"folder":"./node_modules/dexie/dist","public_folder":"/dist/dexie","import_name":"dexie","import_name_build":"/dist/dexie/dexie.mjs"}],"services":["core","user","file","crypto"]},"itemledger":{"metadata":{"title":"Item Ledger","description":"Canonical registry, metadata resolver, and IPFS indexer for Object Layer items — semi-fungible and non-fungible ERC-1155 tokens in the Cyberia Online ecosystem. Item search, provenance, and marketplace.","keywords":["itemledger","object layer","NFT","ERC-1155","metadata","IPFS","registry","marketplace"],"author":"https://github.com/underpostnet","thumbnail":"apple-touch-startup-image-1136x640.png","themeColor":"#0551C4"},"publicCopyNonExistingFiles":"cyberia","components":{"core":["CommonJs","VanillaJs","Responsive","Keyboard","Translate","Modal","SearchBox","BtnIcon","Logger","Css","NotificationManager","ToggleSwitch","DropDown","LoadingAnimation","EventsUI","AgGrid","Pagination","windowGetDimensions","Input","Validator","SignUp","LogIn","LogOut","Router","Account","PublicProfile","Scroll","Auth","ViewModeController","RichText","CalendarCore","D3Chart","Stream","SocketIo","Docs","Content","FileExplorer","Chat","Worker","CssCore","Wallet","Badge","ToolTip","Webhook","Recover","AppStore","SocketIoHandler","EventBus","ClientEvents","Repository"],"itemledger":["AppShellItemledger","RouterItemledger","AppStoreItemledger","CssItemledger","LogInItemledger","LogOutItemledger","SignUpItemledger","SocketIoItemledger","SettingsItemledger","TranslateItemledger"]},"views":[{"path":"/","title":"Home","client":"Itemledger","ssr":"Itemledger"},{"path":"/settings","client":"Itemledger","ssr":"Itemledger"},{"path":"/log-in","client":"Itemledger","ssr":"Itemledger"},{"path":"/sign-up","client":"Itemledger","ssr":"Itemledger"},{"path":"/log-out","client":"Itemledger","ssr":"Itemledger"},{"path":"/account","client":"Itemledger","ssr":"Itemledger"},{"path":"/wallet","client":"Itemledger","ssr":"Itemledger"},{"path":"/recover","client":"Itemledger","ssr":"Itemledger"}],"dists":[{"folder":"./node_modules/@neodrag/vanilla/dist/min","public_folder":"/dist/@neodrag-vanilla","import_name":"@neodrag/vanilla","import_name_build":"/dist/@neodrag-vanilla/index.js"},{"folder":"./node_modules/@fortawesome/fontawesome-free","public_folder":"/dist/fontawesome"},{"folder":"./node_modules/sortablejs/modular","public_folder":"/dist/sortablejs","import_name":"sortablejs","import_name_build":"/dist/sortablejs/sortable.complete.esm.js"},{"folder":"./node_modules/validator","public_folder":"/dist/validator"},{"import_name":"ag-grid-community","import_name_build":"/dist/ag-grid-community/ag-grid-community.min.js","folder":"./node_modules/ag-grid-community/dist","public_folder":"/dist/ag-grid-community","styles":"./node_modules/ag-grid-community/styles","public_styles_folder":"/styles/ag-grid-community"},{"folder":"./node_modules/socket.io/client-dist","public_folder":"/dist/socket.io","import_name":"socket.io/client-dist/socket.io.esm.min.js","import_name_build":"/dist/socket.io/socket.io.esm.min.js"},{"folder":"./node_modules/peerjs/dist","public_folder":"/dist/peerjs"},{"folder":"./node_modules/dexie/dist","public_folder":"/dist/dexie","import_name":"dexie","import_name_build":"/dist/dexie/dexie.mjs"}],"services":["core","user","file","crypto","default"]}},"ssr":{"Underpost":{"head":["Seo","Pwa","UnderpostScripts","Css"],"body":["CacheControl","UnderpostDefaultSplashScreen"],"mailer":{"userVerifyEmail":"DefaultVerifyEmail","userRecoverEmail":"DefaultRecoverEmail"},"views":[{"path":"/offline","title":"No Network Connection","client":"NoNetworkConnection","head":[],"body":[],"offlineDefault":true},{"path":"/maintenance","title":"Server Maintenance","client":"Maintenance","head":[],"body":[],"maintenanceDefault":true},{"path":"/test","title":"Test","client":"Test","head":[],"body":[]},{"path":"/404","title":"404 Not Found","client":"NotFound","head":[],"body":[]}]},"CyberiaPortal":{"head":["Seo","Pwa","Microdata","CyberiaPortalScripts","Css"],"body":["CacheControl","CyberiaDefaultSplashScreen","SwaggerDarkMode"],"mailer":{"userVerifyEmail":"DefaultVerifyEmail","userRecoverEmail":"DefaultRecoverEmail"},"views":[{"path":"/offline","title":"No Network Connection","client":"NoNetworkConnection","head":[],"body":[],"offlineDefault":true},{"path":"/maintenance","title":"Server Maintenance","client":"Maintenance","head":[],"body":[],"maintenanceDefault":true},{"path":"/test","title":"Test","client":"Test","head":[],"body":[]},{"path":"/404","title":"404 Instance Not Found","client":"Cyberia404","head":[],"body":[]}]},"Cryptokoyn":{"head":["Seo","Pwa","Microdata","CryptokoynScripts","Css"],"body":["CacheControl","DefaultSplashScreen"],"mailer":{"userVerifyEmail":"DefaultVerifyEmail","userRecoverEmail":"DefaultRecoverEmail"},"views":[{"path":"/offline","title":"No Network Connection","client":"NoNetworkConnection","head":[],"body":[],"offlineDefault":true},{"path":"/maintenance","title":"Server Maintenance","client":"Maintenance","head":[],"body":[],"maintenanceDefault":true},{"path":"/test","title":"Test","client":"Test","head":[],"body":[]},{"path":"/404","title":"404 Not Found","client":"NotFound","head":[],"body":[]}]},"Itemledger":{"head":["Seo","PwaItemledger","Microdata","ItemledgerScripts","Css"],"body":["CacheControl","DefaultSplashScreen"],"mailer":{"userVerifyEmail":"DefaultVerifyEmail","userRecoverEmail":"DefaultRecoverEmail"},"views":[{"path":"/offline","title":"No Network Connection","client":"NoNetworkConnection","head":[],"body":[],"offlineDefault":true},{"path":"/maintenance","title":"Server Maintenance","client":"Maintenance","head":[],"body":[],"maintenanceDefault":true},{"path":"/test","title":"Test","client":"Test","head":[],"body":[]},{"path":"/404","title":"404 Not Found","client":"NotFound","head":[],"body":[]}]}},"server":{"underpost.net":{"/":{"client":"underpost","runtime":"nodejs","apis":["user","file","test","document"],"apiBaseProxyPath":null,"apiBaseHost":null,"origins":[],"ws":"core","peer":true,"proxy":[80,443],"db":{"provider":"mongoose","host":"env:DB_HOST","name":"env:DB_NAME_NEXODEV","replicaSet":"env:DB_REPLICA_SET:rs0","authSource":"env:DB_AUTH_SOURCE:admin","user":"env:DB_USER:","password":"env:DB_PASSWORD:"},"valkey":{"port":"env:VALKEY_PORT","host":"env:VALKEY_HOST"},"mailer":{"sender":{"email":"env:MAILER_SENDER_EMAIL","name":"env:MAILER_SENDER_NAME"},"transport":{"host":"env:SMTP_HOST","port":"env:SMTP_PORT","secure":true,"auth":{"user":"env:SMTP_AUTH_USER","pass":"env:SMTP_AUTH_PASS"}}}}},"www.underpost.net":{"/":{"client":null,"runtime":"nodejs","apis":[],"origins":[],"proxy":[80,443],"redirect":"https://underpost.net"}},"www.cyberiaonline.com":{"/":{"client":"cyberia-portal","runtime":"nodejs","apis":["core","file","user","crypto","document","instance","object-layer","object-layer-render-frames","atlas-sprite-sheet","ipfs","cyberia-entity","cyberia-map","cyberia-instance","cyberia-instance-conf","cyberia-dialogue","cyberia-quest","cyberia-quest-progress","cyberia-action","cyberia-skill","cyberia-entity-type-default","cyberia-client-hints","cyberia-saga","cyberia-audio","cyberia-map-audio-conf"],"ws":"core","peer":true,"docs":{"jsJsonPath":"./typedoc.dd-cyberia.json","coverage":[{"id":"cyberia","label":"Cyberia coverage","suite":"cyberia"},{"id":"hardhat","label":"Hardhat coverage","path":"./hardhat"}],"references":["./src/client/public/cyberia-docs/CYBERIA.md","./src/client/public/cyberia-docs/WHITE-PAPER.md","./src/client/public/cyberia-docs/ARCHITECTURE.md","./src/client/public/cyberia-docs/QUEST-SYSTEM.md","./src/client/public/cyberia-docs/ACTION-SYSTEM.md","./src/client/public/cyberia-docs/ENTITY-PROFILE.md","./src/client/public/cyberia-docs/STATS-PROGRESSION.md","./src/client/public/cyberia-docs/OFF-CHAIN-ECONOMY.md","./src/client/public/cyberia-docs/HARDHAT-MODULE.md","./src/client/public/cyberia-docs/CYBERIA-SERVER.md","./src/client/public/cyberia-docs/CYBERIA-CLIENT.md","./src/client/public/cyberia-docs/CYBERIA-CLI.md","./src/client/public/cyberia-docs/CYBERIA-LORE.md","./src/client/public/cyberia-docs/CYBERIA-SAGA.md","./src/client/public/cyberia-docs/ROADMAP.md","./src/client/public/cyberia-docs/UNDERPOST-PLATFORM.md"]},"origins":["https://www.cyberiaonline.com","https://server.cyberiaonline.com","https://client.cyberiaonline.com"],"proxy":[80,443],"db":{"provider":"mongoose","host":"env:DB_HOST","name":"env:DB_NAME_CYBERIA","replicaSet":"env:DB_REPLICA_SET:rs0","authSource":"env:DB_AUTH_SOURCE:admin","user":"env:DB_USER:","password":"env:DB_PASSWORD:"},"valkey":{"port":"env:VALKEY_PORT","host":"env:VALKEY_HOST"},"mailer":{"sender":{"email":"env:MAILER_SENDER_EMAIL_CYBERIA","name":"env:MAILER_SENDER_NAME_CYBERIA"},"transport":{"host":"env:SMTP_HOST_CYBERIA","port":"env:SMTP_PORT_CYBERIA","secure":true,"auth":{"user":"env:SMTP_AUTH_USER_CYBERIA","pass":"env:SMTP_AUTH_PASS_CYBERIA"}}},"grpc":{"module":"cyberia","port":50051}}},"cyberiaonline.com":{"/":{"client":null,"apis":[],"runtime":"nodejs","origins":[],"redirect":"https://www.cyberiaonline.com","proxy":[80,443]}},"cryptokoyn.net":{"/":{"client":"cryptokoyn","runtime":"nodejs","apis":["core","file","user","crypto","document","instance","object-layer","object-layer-render-frames","atlas-sprite-sheet","ipfs","cyberia-quest","cyberia-quest-progress","cyberia-action","cyberia-skill","cyberia-entity-type-default"],"origins":[],"ws":"core","peer":true,"proxy":[80,443],"db":{"provider":"mongoose","host":"env:DB_HOST","name":"env:DB_NAME_CRYPTOKOYN","replicaSet":"env:DB_REPLICA_SET:rs0","authSource":"env:DB_AUTH_SOURCE:admin","user":"env:DB_USER:","password":"env:DB_PASSWORD:"},"valkey":{"port":"env:VALKEY_PORT","host":"env:VALKEY_HOST"},"mailer":{"sender":{"email":"env:MAILER_SENDER_EMAIL","name":"env:MAILER_SENDER_NAME"},"transport":{"host":"env:SMTP_HOST","port":"env:SMTP_PORT","secure":true,"auth":{"user":"env:SMTP_AUTH_USER","pass":"env:SMTP_AUTH_PASS"}}}}},"www.cryptokoyn.net":{"/":{"client":null,"runtime":"nodejs","apis":[],"origins":[],"proxy":[80,443],"redirect":"https://cryptokoyn.net"}},"itemledger.com":{"/":{"client":"itemledger","runtime":"nodejs","apis":["core","file","user","crypto","document","instance","object-layer","object-layer-render-frames","atlas-sprite-sheet","ipfs","cyberia-quest","cyberia-quest-progress","cyberia-action","cyberia-skill","cyberia-entity-type-default"],"origins":[],"ws":"core","peer":true,"proxy":[80,443],"db":{"provider":"mongoose","host":"env:DB_HOST","name":"env:DB_NAME_ITEMLEDGER","replicaSet":"env:DB_REPLICA_SET:rs0","authSource":"env:DB_AUTH_SOURCE:admin","user":"env:DB_USER:","password":"env:DB_PASSWORD:"},"valkey":{"port":"env:VALKEY_PORT","host":"env:VALKEY_HOST"},"mailer":{"sender":{"email":"env:MAILER_SENDER_EMAIL","name":"env:MAILER_SENDER_NAME"},"transport":{"host":"env:SMTP_HOST","port":"env:SMTP_PORT","secure":true,"auth":{"user":"env:SMTP_AUTH_USER","pass":"env:SMTP_AUTH_PASS"}}}}},"www.itemledger.com":{"/":{"client":null,"runtime":"nodejs","apis":[],"origins":[],"proxy":[80,443],"redirect":"https://itemledger.com"}}},"cron":{"records":{"A":[{"host":"env:DDNS_HOST:example.com","dns":"env:DDNS_PROVIDER:dondominio","api_key":"env:DDNS_API_KEY:","user":"env:DDNS_USER:"}]},"jobs":{"dns":{"expression":"* * * * *","enabled":true,"instances":1},"backups":{"expression":"0 1 * * *","enabled":true,"instances":1}}},"wireguard":{"00.000.00.000":{"interfaceName":"wg0","listenPort":51820,"address":"10.0.0.1/24","publicKey":"","sshForwardPort":2222,"peers":[{"id":"homelab-a","address":"10.0.0.2","managementHost":"192.168.1.80","publicKey":"","allowedIPs":["10.0.0.2/32"],"hosts":[],"instances":[],"default":true}]}},"event":{"notification-providers":{"default-cluster-mailer-provider":{"type":"mailer","mailer":{"sender":{"email":"env:CLUSTER_MAILER_SENDER_EMAIL","name":"env:CLUSTER_MAILER_SENDER_NAME:Underpost"},"transport":{"host":"env:CLUSTER_MAILER_SMTP_HOST","port":"env:CLUSTER_MAILER_SMTP_PORT:int:587","secure":"env:CLUSTER_MAILER_SMTP_SECURE:bool:false","auth":{"user":"env:CLUSTER_MAILER_SMTP_AUTH_USER","pass":"env:CLUSTER_MAILER_SMTP_AUTH_PASS"}}}}},"events":{"wireguard-server-down":{"probeInterval":"30s","alertFor":"5m","notifications":[{"notification-provider-id":"default-cluster-mailer-provider","payload":{"subscribers":[{"email":"admin@default.net","name":"Admin"}]}}]},"wireguard-spoke-down":{"probeInterval":"30s","alertFor":"2m","notifications":[{"notification-provider-id":"default-cluster-mailer-provider","payload":{"subscribers":[{"email":"admin@default.net","name":"Admin"}]}}]},"public-ingress-down":{"probeInterval":"5m","alertFor":"5m","notifications":[{"notification-provider-id":"default-cluster-mailer-provider","payload":{"subscribers":[{"email":"admin@default.net","name":"Admin"}]}}]}}},"users":[{"user":"root","password":"","groups":"wheel","keyPath":"./engine-private/deploy/id_rsa","pubKeyPath":"./engine-private/deploy/id_rsa.pub","hosts":[{"host":"00.000.00.000","port":22}]}]};/**/
|
|
1043
2
|
|
|
1044
3
|
export { DefaultConf };
|