Brak opisu

olinox14 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu
components 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu
lang dbfd3ce159 add captcha to the form validation 1 rok temu
pages 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu
plugins 360095f95c remove altcha plugin 1 rok temu
public 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu
stores 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu
.dockerignore dbf69ba548 setup nuxt and base components 1 rok temu
.eslintignore dbf69ba548 setup nuxt and base components 1 rok temu
.eslintrc.cjs dbf69ba548 setup nuxt and base components 1 rok temu
.gitignore 2fe34c25a6 remove .yarn from git index 1 rok temu
.nuxtignore dbf69ba548 setup nuxt and base components 1 rok temu
.prettierrc dbf69ba548 setup nuxt and base components 1 rok temu
.yarnrc.yml 94b9cb3971 various fixes 1 rok temu
Dockerfile dbf69ba548 setup nuxt and base components 1 rok temu
LICENSE dbf69ba548 setup nuxt and base components 1 rok temu
README.md ad8a69afaf add altcha and contact request api call 1 rok temu
app.vue 1268a81efc simplify vuetify themes and remove codeblock component 1 rok temu
nuxt.config.ts 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu
package.json dbfd3ce159 add captcha to the form validation 1 rok temu
tsconfig.json dbf69ba548 setup nuxt and base components 1 rok temu
yarn.lock 75fbb6392d add captcha verification, remove static files, various fixes 1 rok temu

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 --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