|
|
há 3 meses atrás | |
|---|---|---|
| components | há 4 meses atrás | |
| i18n | há 3 meses atrás | |
| pages | há 3 meses atrás | |
| plugins | há 5 meses atrás | |
| public | há 5 meses atrás | |
| stores | há 5 meses atrás | |
| .dockerignore | há 5 meses atrás | |
| .eslintignore | há 5 meses atrás | |
| .eslintrc.cjs | há 5 meses atrás | |
| .gitignore | há 5 meses atrás | |
| .nuxtignore | há 5 meses atrás | |
| .prettierrc | há 5 meses atrás | |
| .yarnrc.yml | há 5 meses atrás | |
| Dockerfile | há 5 meses atrás | |
| LICENSE | há 5 meses atrás | |
| README.md | há 5 meses atrás | |
| app.vue | há 4 meses atrás | |
| description.txt | há 5 meses atrás | |
| inventaire.txt | há 5 meses atrás | |
| nuxt.config.ts | há 5 meses atrás | |
| package.json | há 5 meses atrás | |
| tsconfig.json | há 5 meses atrás | |
| yarn.lock | há 5 meses atrás |
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/
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