Ei kuvausta

olinox14 94b9cb3971 various fixes 1 vuosi sitten
.yarn 94b9cb3971 various fixes 1 vuosi sitten
components 94b9cb3971 various fixes 1 vuosi sitten
lang 0d66b0458e add links and logos to introduction 1 vuosi sitten
pages 94b9cb3971 various fixes 1 vuosi sitten
plugins b1ac2735a1 add matomo, vuetify, basic topbar 1 vuosi sitten
public 0d66b0458e add links and logos to introduction 1 vuosi sitten
.dockerignore dbf69ba548 setup nuxt and base components 1 vuosi sitten
.eslintignore dbf69ba548 setup nuxt and base components 1 vuosi sitten
.eslintrc.cjs dbf69ba548 setup nuxt and base components 1 vuosi sitten
.gitignore dbf69ba548 setup nuxt and base components 1 vuosi sitten
.nuxtignore dbf69ba548 setup nuxt and base components 1 vuosi sitten
.prettierrc dbf69ba548 setup nuxt and base components 1 vuosi sitten
.yarnrc.yml 94b9cb3971 various fixes 1 vuosi sitten
Dockerfile dbf69ba548 setup nuxt and base components 1 vuosi sitten
LICENSE dbf69ba548 setup nuxt and base components 1 vuosi sitten
README.md 48f8f8fbe9 Initial commit 1 vuosi sitten
app.vue 5da8a27018 style fixes 1 vuosi sitten
nuxt.config.ts 94b9cb3971 various fixes 1 vuosi sitten
package.json 94b9cb3971 various fixes 1 vuosi sitten
tsconfig.json dbf69ba548 setup nuxt and base components 1 vuosi sitten
yarn.lock 94b9cb3971 various fixes 1 vuosi sitten

README.md

CV

Build

Build your docker container :

docker build -t cv2 .

Run it (name can be changed):

# On Linux
docker run -v "$(pwd)":/cv2 -p 3000:3000 --name cv2 cv2

# On Windows
docker run -d -v "%cd%:/cv2" -p 3000:3000 -p 4000:4000 --name cv2 cv2

Execute it and install dependencies :

docker exec -it cv2 bash

The project will be accessible locally at : http://localhost:3000/

Run on a built container

If you've already built your container, start it and run with :

docker start cv2
docker exec -it cv2 bash
yarn dev

To generate :

docker exec -it cv2 bash
yarn generate