@5minds/node-red-contrib-processcube 1.9.3-develop-5b0ff9-m8m7v00n → 1.9.3
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/package.json +1 -1
- package/.github/workflows/build-and-publish.yml +0 -72
- package/.processcube/authority/config/config.json +0 -36
- package/.processcube/authority/config/upeSeedingData.json +0 -12
- package/.processcube/engine/config/config.json +0 -17
- package/.processcube/nodered/.config.nodes.json +0 -658
- package/.processcube/nodered/.config.runtime.json +0 -3
- package/.processcube/nodered/.config.users.json +0 -31
- package/.processcube/nodered/config.js +0 -20
- package/.processcube/nodered/flows.json +0 -3487
- package/.processcube/nodered/flows_cred.json +0 -3
- package/.processcube/nodered/package-lock.json +0 -5169
- package/.processcube/nodered/package.json +0 -6
- package/.processcube/nodered/settings.js +0 -562
- package/.processcube/nodered/static/ProcessCube_Logo.svg +0 -53
- package/DEVELOPMENT.md +0 -16
- package/Dockerfile +0 -22
- package/doc_generator/README.md +0 -6
- package/doc_generator/_process_instances_query.md +0 -121
- package/doc_generator/generator.js +0 -41
- package/doc_generator/generator_with_swagger.js +0 -89
- package/doc_generator/outputs/.gitkeep +0 -0
- package/doc_generator/package-lock.json +0 -176
- package/doc_generator/package.json +0 -15
- package/doc_generator/query_template.mustache +0 -20
- package/doc_generator/swagger.json +0 -4110
- package/docker-compose.yml +0 -78
- package/postgres/init.sql +0 -13
- package/processes/Call-Activity-Sample.bpmn +0 -88
- package/processes/External-Task-Auth-Sample.bpmn +0 -82
- package/processes/External-Task-Env-Topic.bpmn +0 -57
- package/processes/External-Task-Sample.bpmn +0 -122
- package/processes/ProcessModelToDeploy.bpmn +0 -58
- package/processes/SampleEvent.bpmn +0 -73
- package/processes/SimpleExternalTask.bpmn +0 -52
- package/processes/StartProcessSample.bpmn +0 -54
- package/processes/TriggerMessageEvent.bpmn +0 -79
- package/processes/User-Task-Auth-Sample.bpmn +0 -63
- package/processes/User-Task-Sample.bpmn +0 -76
- package/processes/Wait-For-Usertask.bpmn +0 -74
package/package.json
CHANGED
@@ -1,72 +0,0 @@
|
|
1
|
-
name: Build and Publish
|
2
|
-
|
3
|
-
on:
|
4
|
-
push:
|
5
|
-
branches:
|
6
|
-
- '*'
|
7
|
-
- '*/*'
|
8
|
-
|
9
|
-
env:
|
10
|
-
CI_TOOLS_VERSION: '^5.0.0'
|
11
|
-
# NOTE: Um den Releasezyklus von Alpha nach Beta zu ändern, einfach die nachfolgend deklarierten Env Variablen switchen.
|
12
|
-
CI_TOOLS_ALPHA_BRANCH: next
|
13
|
-
CI_TOOLS_ALPHA_NPM_TAG: next
|
14
|
-
# CI_TOOLS_BETA_BRANCH: next
|
15
|
-
# CI_TOOLS_BETA_NPM_TAG: next
|
16
|
-
BOX_RELEASE_TAG: 2025-1
|
17
|
-
|
18
|
-
jobs:
|
19
|
-
build_and_publish:
|
20
|
-
name: 'Build and publish sources'
|
21
|
-
runs-on: ubuntu-latest
|
22
|
-
if: "!(contains(github.actor, 'process-engine-ci') || contains(github.actor, 'admin'))"
|
23
|
-
|
24
|
-
steps:
|
25
|
-
- uses: actions/checkout@v4
|
26
|
-
with:
|
27
|
-
fetch-depth: 0
|
28
|
-
token: ${{ secrets.GH_TOKEN }}
|
29
|
-
|
30
|
-
- name: Use Node.js 22
|
31
|
-
uses: actions/setup-node@v4
|
32
|
-
with:
|
33
|
-
node-version: '22'
|
34
|
-
registry-url: 'https://registry.npmjs.org'
|
35
|
-
|
36
|
-
- name: Install CI Tools
|
37
|
-
env:
|
38
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
39
|
-
run: npm i -g @5minds/product_ci_tools@${{ env.CI_TOOLS_VERSION }}
|
40
|
-
|
41
|
-
- name: 'Install Dependencies'
|
42
|
-
env:
|
43
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
44
|
-
run: npm ci
|
45
|
-
|
46
|
-
- name: 'Prepare Version'
|
47
|
-
if: "!startsWith(github.ref_name, 'renovate')"
|
48
|
-
run: ci_tools prepare-version --allow-dirty-workdir
|
49
|
-
|
50
|
-
- name: 'Commit & Tag Version'
|
51
|
-
if: "!startsWith(github.ref_name, 'renovate')"
|
52
|
-
env:
|
53
|
-
GH_USER: ${{ secrets.GH_USER }}
|
54
|
-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
55
|
-
run: |
|
56
|
-
ci_tools commit-and-tag-version --only-on-primary-branches
|
57
|
-
ci_tools update-github-release --only-on-primary-branches --use-title-and-text-from-git-tag
|
58
|
-
|
59
|
-
- name: 'Publish Version'
|
60
|
-
if: "!startsWith(github.ref_name, 'renovate')"
|
61
|
-
env:
|
62
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
63
|
-
run: ci_tools publish-npm-package --create-tag-from-branch-name
|
64
|
-
|
65
|
-
- name: Add Box-Release Tag
|
66
|
-
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next'
|
67
|
-
env:
|
68
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
69
|
-
run: |
|
70
|
-
VERSION="$(ci_tools get-version)"
|
71
|
-
PACKAGE_NAME="$(npm pkg get name | tr -d \")"
|
72
|
-
npm dist-tag add $PACKAGE_NAME@$VERSION ${{ env.BOX_RELEASE_TAG }}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"issuerUrl": "http://authority:11560",
|
3
|
-
"applicationPort": 11560,
|
4
|
-
"development": {
|
5
|
-
"builtInReactDevServer": false,
|
6
|
-
"detailedErrors": true,
|
7
|
-
"disableHttpsEnforcement": true,
|
8
|
-
"enableLocalhostImplicit": true,
|
9
|
-
"fixWrongHostnames": true
|
10
|
-
},
|
11
|
-
"studio": true,
|
12
|
-
"engines": [
|
13
|
-
{
|
14
|
-
"clientId": "5minds_engine",
|
15
|
-
"clientSecret": "5minds_engine"
|
16
|
-
}
|
17
|
-
],
|
18
|
-
"database": {
|
19
|
-
"dialect": "sqlite",
|
20
|
-
"storage": "storage/database.sqlite",
|
21
|
-
"logging": false
|
22
|
-
},
|
23
|
-
"extensions": {
|
24
|
-
"path": "/app/extensions",
|
25
|
-
"configs": {
|
26
|
-
"username_password": {}
|
27
|
-
}
|
28
|
-
},
|
29
|
-
"externalTaskWorkers": [
|
30
|
-
{
|
31
|
-
"clientId": "nodered",
|
32
|
-
"clientSecret": "nodered",
|
33
|
-
"scope": "engine_etw engine_read engine_write"
|
34
|
-
}
|
35
|
-
]
|
36
|
-
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"logging": {
|
3
|
-
"outputPath": "logs",
|
4
|
-
"minLogLevel": "info"
|
5
|
-
},
|
6
|
-
"database": {
|
7
|
-
"username": "engine_user",
|
8
|
-
"password": "enigne_password",
|
9
|
-
"database": "engine_db",
|
10
|
-
"host": "postgres",
|
11
|
-
"port": 5432,
|
12
|
-
"dialect": "postgres",
|
13
|
-
"supportBigNumbers": true,
|
14
|
-
"resetPasswordRequestTimeToLive": 12,
|
15
|
-
"logging": false
|
16
|
-
}
|
17
|
-
}
|