Sem descrição

olinox14 46219348cf update description and rates há 2 meses atrás
components 42487d3ee5 fix responsive behaviour há 9 meses atrás
i18n 46219348cf update description and rates há 2 meses atrás
pages 46219348cf update description and rates há 2 meses atrás
plugins 4dbbc95651 add the index and legal pages há 9 meses atrás
public 4dbbc95651 add the index and legal pages há 9 meses atrás
stores e342e33454 create app skeleton há 10 meses atrás
.dockerignore e342e33454 create app skeleton há 10 meses atrás
.eslintignore e342e33454 create app skeleton há 10 meses atrás
.eslintrc.cjs e342e33454 create app skeleton há 10 meses atrás
.gitignore e342e33454 create app skeleton há 10 meses atrás
.nuxtignore e342e33454 create app skeleton há 10 meses atrás
.prettierrc e342e33454 create app skeleton há 10 meses atrás
.yarnrc.yml e342e33454 create app skeleton há 10 meses atrás
Dockerfile e342e33454 create app skeleton há 10 meses atrás
LICENSE e342e33454 create app skeleton há 10 meses atrás
README.md 349450529d Initial commit há 10 meses atrás
app.vue 42487d3ee5 fix responsive behaviour há 9 meses atrás
description.txt e342e33454 create app skeleton há 10 meses atrás
inventaire.txt e342e33454 create app skeleton há 10 meses atrás
nuxt.config.ts 64d4f2bb95 various fixes há 9 meses atrás
package.json 4dbbc95651 add the index and legal pages há 9 meses atrás
tsconfig.json e342e33454 create app skeleton há 10 meses atrás
yarn.lock 4dbbc95651 add the index and legal pages há 9 meses atrás

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