Sin descripción

olinox14 64d4f2bb95 various fixes hace 1 año
components 64d4f2bb95 various fixes hace 1 año
i18n 64d4f2bb95 various fixes hace 1 año
pages 64d4f2bb95 various fixes hace 1 año
plugins 4dbbc95651 add the index and legal pages hace 1 año
public 4dbbc95651 add the index and legal pages hace 1 año
stores e342e33454 create app skeleton hace 1 año
.dockerignore e342e33454 create app skeleton hace 1 año
.eslintignore e342e33454 create app skeleton hace 1 año
.eslintrc.cjs e342e33454 create app skeleton hace 1 año
.gitignore e342e33454 create app skeleton hace 1 año
.nuxtignore e342e33454 create app skeleton hace 1 año
.prettierrc e342e33454 create app skeleton hace 1 año
.yarnrc.yml e342e33454 create app skeleton hace 1 año
Dockerfile e342e33454 create app skeleton hace 1 año
LICENSE e342e33454 create app skeleton hace 1 año
README.md 349450529d Initial commit hace 1 año
app.vue 4dbbc95651 add the index and legal pages hace 1 año
description.txt e342e33454 create app skeleton hace 1 año
inventaire.txt e342e33454 create app skeleton hace 1 año
nuxt.config.ts 64d4f2bb95 various fixes hace 1 año
package.json 4dbbc95651 add the index and legal pages hace 1 año
tsconfig.json e342e33454 create app skeleton hace 1 año
yarn.lock 4dbbc95651 add the index and legal pages hace 1 año

README.md

sauvagerie.fr

Build

Build your docker container :

docker build -t sauvagerie .

Run it (name can be changed):

# On Linux
docker run -v "$(pwd)":/sauvagerie -p 3000:3000 --name sauvagerie sauvagerie

# On Windows
docker run -d -v "${PWD}:/sauvagerie" -p 3000:3000 --name sauvagerie sauvagerie

Execute it and install dependencies :

docker exec -it sauvagerie 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 sauvagerie
docker exec -it sauvagerie bash
yarn dev

To generate :

docker exec -it sauvagerie bash
yarn generate