Bez popisu

olinox14 0d66b0458e add links and logos to introduction před 1 rokem
.yarn f745323643 add i18n, Badge component and logos před 1 rokem
components e22ad1d5b9 add the language selector component před 1 rokem
lang 0d66b0458e add links and logos to introduction před 1 rokem
pages 0d66b0458e add links and logos to introduction před 1 rokem
plugins b1ac2735a1 add matomo, vuetify, basic topbar před 1 rokem
public 0d66b0458e add links and logos to introduction před 1 rokem
.dockerignore dbf69ba548 setup nuxt and base components před 1 rokem
.eslintignore dbf69ba548 setup nuxt and base components před 1 rokem
.eslintrc.cjs dbf69ba548 setup nuxt and base components před 1 rokem
.gitignore dbf69ba548 setup nuxt and base components před 1 rokem
.nuxtignore dbf69ba548 setup nuxt and base components před 1 rokem
.prettierrc dbf69ba548 setup nuxt and base components před 1 rokem
.yarnrc.yml dbf69ba548 setup nuxt and base components před 1 rokem
Dockerfile dbf69ba548 setup nuxt and base components před 1 rokem
LICENSE dbf69ba548 setup nuxt and base components před 1 rokem
README.md 48f8f8fbe9 Initial commit před 1 rokem
app.vue 5da8a27018 style fixes před 1 rokem
nuxt.config.ts 0d66b0458e add links and logos to introduction před 1 rokem
package.json f745323643 add i18n, Badge component and logos před 1 rokem
tsconfig.json dbf69ba548 setup nuxt and base components před 1 rokem
yarn.lock f745323643 add i18n, Badge component and logos před 1 rokem

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