Sen descrición

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

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