Nincs leírás

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

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