Go to file
scammo 5b3252ec98 Merge branch 'main' of git.wtf-eg.de:kompetenzinventar/ki-frontend into main 2021-08-18 22:59:50 +02:00
.reuse #5 reuse 2021-08-02 19:06:41 +02:00
LICENSES #5 reuse 2021-08-02 19:06:41 +02:00
public #10 bennung skills und levels 2021-08-12 17:13:04 +02:00
src #13 2021-08-18 22:59:44 +02:00
.browserslistrc init 2021-05-31 16:14:28 +02:00
.dockerignore add Dockerfile 2021-06-14 22:27:23 +02:00
.drone.yml fix drone build 2021-07-26 21:08:50 +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 provide config.js 2021-07-28 22:03:07 +02:00
Dockerfile add drone docker image build 2021-07-26 21:01:45 +02:00
README.md provide config.js 2021-07-28 22:03:07 +02:00
babel.config.js init 2021-05-31 16:14:28 +02:00
package-lock.json #19 profile.address 2021-08-16 18:40:55 +02:00
package.json switch to scss 2021-08-14 14:43:57 +02:00

README.md

ki-frontend

Build Status

Vue3 Projekt:

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