-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feature/linter
- Loading branch information
Showing
83 changed files
with
4,822 additions
and
3,792 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
components/bpmn-q/node_modules/ | ||
npm-debug.log | ||
yarn-error.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
docker-publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
push: true | ||
tags: planqk/workflow-modeler:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,45 @@ | ||
FROM node:18-alpine | ||
|
||
FROM node:18-alpine as builder | ||
LABEL maintainer = "Martin Beisel <martin.beisel@iaas.uni-stuttgart.de>" | ||
COPY "components/bpmn-q" /tmp | ||
WORKDIR /tmp | ||
COPY "components/bpmn-q" /app | ||
WORKDIR /app | ||
RUN npm ci | ||
|
||
ARG DATA_CONFIG | ||
ARG OPENTOSCA_ENDPOINT | ||
ARG WINERY_ENDPOINT | ||
ARG NISQ_ANALYZER_ENDPOINT | ||
ARG TRANSFORMATION_FRAMEWORK_ENDPOINT | ||
ARG QISKIT_RUNTIME_HANDLER_ENDPOINT | ||
ARG AWS_RUNTIME_HANDLER_ENDPOINT | ||
ARG SCRIPT_SPLITTER_ENDPOINT | ||
ARG SCRIPT_SPLITTER_THRESHOLD | ||
ARG QRM_REPONAME | ||
ARG QRM_USERNAME | ||
ARG QRM_REPOPATH | ||
ARG PROVENANCE_COLLECTION | ||
ARG ENABLE_DATA_FLOW_PLUGIN | ||
ARG ENABLE_PLANQK_PLUGIN | ||
ARG ENABLE_QHANA_PLUGIN | ||
ARG ENABLE_QUANTME_PLUGIN | ||
ARG ENABLE_OPENTOSCA_PLUGIN | ||
ARG AUTOSAVE_INTERVAL | ||
ARG CAMUNDA_ENDPOINT | ||
ARG DOWNLOAD_FILE_NAME | ||
ARG GITHUB_TOKEN | ||
ARG QHANA_GET_PLUGIN_URL | ||
ARG QHANA_LIST_PLUGINS_URL | ||
ARG SERVICE_DATA_CONFIG | ||
ARG UPLOAD_BRANCH_NAME | ||
ARG UPLOAD_FILE_NAME | ||
ARG UPLOAD_GITHUB_REPO | ||
ARG UPLOAD_GITHUB_USER | ||
|
||
RUN npm install | ||
RUN env | ||
RUN npm run build -- --mode=production | ||
|
||
EXPOSE 8080 | ||
|
||
CMD npm run dev | ||
FROM nginxinc/nginx-unprivileged:alpine | ||
USER root | ||
RUN rm -rf /usr/share/nginx/html | ||
COPY --from=builder /app/public /usr/share/nginx/html | ||
USER 101 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.