Bez popisu

olinox14 31e5340bc5 setup a 15' expiration delay to captcha challenge před 1 rokem
components 31e5340bc5 setup a 15' expiration delay to captcha challenge před 1 rokem
lang dbfd3ce159 add captcha to the form validation před 1 rokem
pages 75fbb6392d add captcha verification, remove static files, various fixes před 1 rokem
plugins 360095f95c remove altcha plugin před 1 rokem
public 75fbb6392d add captcha verification, remove static files, various fixes před 1 rokem
stores 75fbb6392d add captcha verification, remove static files, various fixes 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 2fe34c25a6 remove .yarn from git index 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 94b9cb3971 various fixes 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 ad8a69afaf add altcha and contact request api call před 1 rokem
app.vue 1268a81efc simplify vuetify themes and remove codeblock component před 1 rokem
nuxt.config.ts 75fbb6392d add captcha verification, remove static files, various fixes před 1 rokem
package.json dbfd3ce159 add captcha to the form validation před 1 rokem
tsconfig.json dbf69ba548 setup nuxt and base components před 1 rokem
yarn.lock 75fbb6392d add captcha verification, remove static files, various fixes 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 --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