Aucune description

olinox14 2ae3e81e17 update descriptions to add residencies and stages il y a 3 mois
components 42487d3ee5 fix responsive behaviour il y a 4 mois
i18n 2ae3e81e17 update descriptions to add residencies and stages il y a 3 mois
pages 2ae3e81e17 update descriptions to add residencies and stages il y a 3 mois
plugins 4dbbc95651 add the index and legal pages il y a 5 mois
public 4dbbc95651 add the index and legal pages il y a 5 mois
stores e342e33454 create app skeleton il y a 5 mois
.dockerignore e342e33454 create app skeleton il y a 5 mois
.eslintignore e342e33454 create app skeleton il y a 5 mois
.eslintrc.cjs e342e33454 create app skeleton il y a 5 mois
.gitignore e342e33454 create app skeleton il y a 5 mois
.nuxtignore e342e33454 create app skeleton il y a 5 mois
.prettierrc e342e33454 create app skeleton il y a 5 mois
.yarnrc.yml e342e33454 create app skeleton il y a 5 mois
Dockerfile e342e33454 create app skeleton il y a 5 mois
LICENSE e342e33454 create app skeleton il y a 5 mois
README.md 349450529d Initial commit il y a 5 mois
app.vue 42487d3ee5 fix responsive behaviour il y a 4 mois
description.txt e342e33454 create app skeleton il y a 5 mois
inventaire.txt e342e33454 create app skeleton il y a 5 mois
nuxt.config.ts 64d4f2bb95 various fixes il y a 5 mois
package.json 4dbbc95651 add the index and legal pages il y a 5 mois
tsconfig.json e342e33454 create app skeleton il y a 5 mois
yarn.lock 4dbbc95651 add the index and legal pages il y a 5 mois

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