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