From 269768981cd9d69cdec0c1128249c4a20bc80b94 Mon Sep 17 00:00:00 2001 From: Dobromir Zahariev Date: Mon, 27 May 2024 07:56:17 +0300 Subject: [PATCH] Documentation update --- README.md | 4 ++-- ui/Dockerfile | 16 ---------------- 2 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 ui/Dockerfile diff --git a/README.md b/README.md index 52a7853..1ae6373 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # taskboard Web application for managing (create/modify/delete/start/stop) and monitoring (see progress) of generic tasks, that are handled by separate script or module. File system is used for persistency. -- Backend build with Go, using [GorillaMux](https://github.com/gorilla/mux) for router and [GORM](https://gorm.io) for ORM data access +- Backend build with Go, using [GorillaMux](https://github.com/gorilla/mux) for router. - Frontend based on [OpenUI5](https://openui5.hana.ondemand.com) - Security is token based with [Keycloak](https://www.keycloak.org) Open ID provider @@ -111,7 +111,7 @@ Create group `Realm Admins` with follwoing role mappings: - `realm-management.view-users` - `realm-management.manage-users` -Create dedicated user `realmadmin` and addi to `Realm Admins` group. +Create dedicated user `realmadmin` and add it to `Realm Admins` group. This user can manage (create/delete) users in this realm using the management console: http://keycloak:8086/admin/taskboard/console This user is responsible to add/remove users from this realm. diff --git a/ui/Dockerfile b/ui/Dockerfile deleted file mode 100644 index 2ae991b..0000000 --- a/ui/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM node:20.11-alpine as build -WORKDIR /usr/app -RUN npm install --global @ui5/cli -COPY ./webapp ./webapp -COPY ./release ./release -COPY ./package.json ./package.json -COPY ./ui5.yaml ./ui5.yaml -RUN npm install -RUN npm run build - -FROM nginx:alpine-slim AS release -COPY --from=build /usr/app/dist /usr/share/nginx/html -COPY --from=build /usr/app/release/sap-ui-version.json /usr/share/nginx/html/resources -COPY --from=build /usr/app/release/nginx.conf /etc/nginx/conf.d/default.conf -EXPOSE 8802 -CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file