暂无描述

olinox14 44268643e3 improve language selector style 1 年之前
.yarn e12d09021f add nuxt/mail and implement in contact component 1 年之前
components 44268643e3 improve language selector style 1 年之前
lang 9b65b42fa8 add flags to the language selector 1 年之前
pages 59b7397a57 refactor badge sections 1 年之前
plugins 59b7397a57 refactor badge sections 1 年之前
public 59b7397a57 refactor badge sections 1 年之前
.dockerignore dbf69ba548 setup nuxt and base components 1 年之前
.eslintignore dbf69ba548 setup nuxt and base components 1 年之前
.eslintrc.cjs dbf69ba548 setup nuxt and base components 1 年之前
.gitignore dbf69ba548 setup nuxt and base components 1 年之前
.nuxtignore dbf69ba548 setup nuxt and base components 1 年之前
.prettierrc dbf69ba548 setup nuxt and base components 1 年之前
.yarnrc.yml 94b9cb3971 various fixes 1 年之前
Dockerfile dbf69ba548 setup nuxt and base components 1 年之前
LICENSE dbf69ba548 setup nuxt and base components 1 年之前
README.md 48f8f8fbe9 Initial commit 1 年之前
app.vue c462c0c03b add footer 1 年之前
nuxt.config.ts e12d09021f add nuxt/mail and implement in contact component 1 年之前
package.json e12d09021f add nuxt/mail and implement in contact component 1 年之前
tsconfig.json dbf69ba548 setup nuxt and base components 1 年之前
yarn.lock e12d09021f add nuxt/mail and implement in contact component 1 年之前

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