harperdb 4.3.27 → 4.3.28
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/README.md +1 -1
- package/application-template/config.yaml +2 -5
- package/bin/harperdb.js +7 -5
- package/bin/lite.js +7 -5
- package/launchServiceScripts/launchInstallNATSServer.js +1 -1
- package/launchServiceScripts/launchNatsIngestService.js +6 -4
- package/launchServiceScripts/launchNatsReplyService.js +7 -5
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +7 -5
- package/npm-shrinkwrap.json +7 -7
- package/package.json +1 -1
- package/server/jobs/jobProcess.js +7 -5
- package/server/threads/threadServer.js +7 -5
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.cbf96b8b.js → main.688e0bbd.js} +2 -2
- package/utility/scripts/restartHdb.js +7 -5
- package/application-template/routes/index.js +0 -14
- /package/studio/build-local/static/js/{main.cbf96b8b.js.LICENSE.txt → main.688e0bbd.js.LICENSE.txt} +0 -0
package/README.md
CHANGED
|
@@ -8,11 +8,8 @@ graphqlSchema: # These reads GraphQL schemas to define the schema of database/t
|
|
|
8
8
|
jsResource: # Loads JavaScript modules such that their exports are exported as resources
|
|
9
9
|
files: resources.js # the entry module for resources
|
|
10
10
|
# path: / # exported resources are on the root path by default, like http://server/resource-name
|
|
11
|
-
fastifyRoutes: # This loads files that define fastify routes using fastify's auto-loader
|
|
12
|
-
files: routes/*.js # specify the location of route definition modules
|
|
13
|
-
path: . # relative to the app-name, like http://server/app-name/route-name
|
|
14
11
|
static: # This allows static files to be directly accessible
|
|
15
12
|
root: web
|
|
16
13
|
files: web/**
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
roles: # This can define the roles that are used in the application
|
|
15
|
+
files: roles.yaml
|