Frontend für das Kompetenz Inventar. Geschrieben in vue.js. Alle Issues werden im ki-doku Repository verwaltet
Go to file
Brain d46aaa0f31
continuous-integration/drone/push Build is passing Details
Merge pull request 'Fix Dockerfile' (!89) from fix-dockerfile into main
Reviewed-on: #89
2024-04-23 23:07:43 +02:00
.reuse implement search layout #32 #33 #35 2021-09-22 00:01:17 +02:00
LICENSES implement search layout #32 #33 #35 2021-09-22 00:01:17 +02:00
etc/nginx/conf.d Improve SPA cacheing 2023-11-06 18:35:05 +01:00
public implement search layout #32 #33 #35 2021-09-22 00:01:17 +02:00
src ISSUE-58| Move profile visiblity (!87) 2024-02-20 20:26:54 +01:00
.browserslistrc init 2021-05-31 16:14:28 +02:00
.dockerignore ♻️ Optimize Dockerfile 2024-01-12 18:42:27 +01:00
.drone.yml Try to build Docker image for Pull Requests 2024-04-23 22:48:01 +02:00
.editorconfig add editorconfig 2021-08-16 19:20:53 +02:00
.eslintrc.js init 2021-05-31 16:14:28 +02:00
.gitignore update boostrap 2021-09-19 10:42:59 +02:00
Dockerfile Add missing trailing slash 2024-04-23 22:47:54 +02:00
README.md add reuse compliance #5 2021-09-19 13:04:03 +02:00
babel.config.js add reuse compliance #5 2021-09-19 13:04:03 +02:00
package-lock.json update npm packages 2022-01-23 19:56:14 +01:00
package.json update npm packages 2022-01-23 19:56:14 +01:00

README.md

ki-frontend

Build Status REUSE status

Über

Dieses Repo enthält das Frontend des Projekts Kompentenzinventar - einer Webapplikation zur Erfassung von Userprofilen für die WTF eG.

Implementiert ist das Frontend mit Vue3.

Mitmachen

Du kannst gerne bei der Entwicklung des Kompetenzinventars mitmachen.

  • Fehler oder fehlende Funktionen erfassen. Bitte direkt über die Issues in Gitea.
  • Dokumentation oder Implementierung verbessern. Bitte forke hierzu das Projekt, branche von main ab und erstelle dann einen Pull Request.

Kommunikation

Folgende Kanäle gibt es für die Kommunikation über das Kompetenzinventar:

  • Die Issues im WTF Gitea.
  • Den Bereich AG Entwicklung im WTF Forum.
  • Einen Raum in Matrix. Zutritt per Einladung, frlan lädt ein, eine einfache PN im Forum reicht.

Repos

Project setup

npm ci

Konfigurationsdatei anpassen

cp public/config.js.dev public/config.js
vi public/config.js

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

Vorraussetzung: Node & NPM

Docker

Image bauen

docker build --target ki-frontend --tag ki_frontend .

Container starten

docker run \
    --name=ki_frontend \
    -v ${PWD}/public/config.js:/user/share/nginx/html/config.js \
    -p 8000:80 \
    ki_frontend