Frontend für das Kompetenz Inventar. Geschrieben in vue.js. Alle Issues werden im ki-doku Repository verwaltet
Go to file
Renovate Bot 3519a847c4
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
continuous-integration/drone/pr Build is passing
chore(deps): update dependency sass to v1.78.0
2024-09-06 23:36:06 +00:00
etc/nginx/conf.d Improve SPA cacheing 2023-11-06 18:35:05 +01:00
LICENSES implement search layout #32 #33 #35 2021-09-22 00:01:17 +02:00
public implement search layout #32 #33 #35 2021-09-22 00:01:17 +02:00
src Use Bootstrap classes 2024-08-21 20:25:28 +02:00
.browserslistrc init 2021-05-31 16:14:28 +02:00
.dockerignore ♻️ Optimize Dockerfile 2024-01-12 18:42:27 +01:00
.drone.yml chore(deps): update node.js to 4bc7ea5 2024-09-05 06:35:44 +00:00
.editorconfig add editorconfig 2021-08-16 19:20:53 +02:00
.eslintrc.js ISSUE-72| Update more deps 2024-02-21 06:40:53 +01:00
.gitignore update boostrap 2021-09-19 10:42:59 +02:00
babel.config.js add reuse compliance #5 2021-09-19 13:04:03 +02:00
Dockerfile chore(deps): update node.js to v20.17.0 2024-08-22 11:35:56 +00:00
package-lock.json chore(deps): update dependency sass to v1.78.0 2024-09-06 23:36:06 +00:00
package.json chore(deps): update dependency sass to v1.78.0 2024-09-06 23:36:06 +00:00
README.md Add pre requirements to readme 2024-02-11 15:09:35 +01:00
renovate.json Disable Dependency Dashboard because of external issues 2024-08-21 22:12:43 +02:00
REUSE.toml Specify license for REUSE.toml 2024-08-27 18:36:30 +02:00

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

Pre requirements

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