بدون توضیح

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

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