Ingen beskrivning

olinox14 b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
.yarn b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
components b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
pages dbf69ba548 setup nuxt and base components 1 år sedan
plugins b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
public b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
.dockerignore dbf69ba548 setup nuxt and base components 1 år sedan
.eslintignore dbf69ba548 setup nuxt and base components 1 år sedan
.eslintrc.cjs dbf69ba548 setup nuxt and base components 1 år sedan
.gitignore dbf69ba548 setup nuxt and base components 1 år sedan
.nuxtignore dbf69ba548 setup nuxt and base components 1 år sedan
.prettierrc dbf69ba548 setup nuxt and base components 1 år sedan
.yarnrc.yml dbf69ba548 setup nuxt and base components 1 år sedan
Dockerfile dbf69ba548 setup nuxt and base components 1 år sedan
LICENSE dbf69ba548 setup nuxt and base components 1 år sedan
README.md 48f8f8fbe9 Initial commit 1 år sedan
app.vue b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
nuxt.config.ts b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan
package.json dbf69ba548 setup nuxt and base components 1 år sedan
tsconfig.json dbf69ba548 setup nuxt and base components 1 år sedan
yarn.lock b1ac2735a1 add matomo, vuetify, basic topbar 1 år sedan

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