Açıklama Yok

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

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