No Description

olinox14 e342e33454 create app skeleton 11 months ago
components e342e33454 create app skeleton 11 months ago
lang e342e33454 create app skeleton 11 months ago
pages e342e33454 create app skeleton 11 months ago
plugins e342e33454 create app skeleton 11 months ago
public e342e33454 create app skeleton 11 months ago
stores e342e33454 create app skeleton 11 months ago
.dockerignore e342e33454 create app skeleton 11 months ago
.eslintignore e342e33454 create app skeleton 11 months ago
.eslintrc.cjs e342e33454 create app skeleton 11 months ago
.gitignore e342e33454 create app skeleton 11 months ago
.nuxtignore e342e33454 create app skeleton 11 months ago
.prettierrc e342e33454 create app skeleton 11 months ago
.yarnrc.yml e342e33454 create app skeleton 11 months ago
Dockerfile e342e33454 create app skeleton 11 months ago
LICENSE e342e33454 create app skeleton 11 months ago
README.md 349450529d Initial commit 11 months ago
app.vue e342e33454 create app skeleton 11 months ago
description.txt e342e33454 create app skeleton 11 months ago
inventaire.txt e342e33454 create app skeleton 11 months ago
nuxt.config.ts e342e33454 create app skeleton 11 months ago
package.json e342e33454 create app skeleton 11 months ago
prompt.txt e342e33454 create app skeleton 11 months ago
tsconfig.json e342e33454 create app skeleton 11 months ago
yarn.lock e342e33454 create app skeleton 11 months ago

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