暫無描述

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

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