Sin descripción

olinox14 b86a426f71 update tourism links hace 11 meses
components 42487d3ee5 fix responsive behaviour hace 11 meses
i18n b86a426f71 update tourism links hace 11 meses
pages b86a426f71 update tourism links hace 11 meses
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 42487d3ee5 fix responsive behaviour hace 11 meses
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