From 99202436c065f792711cfcdb5b24ba0fe6c6e29d Mon Sep 17 00:00:00 2001 From: Manuel Riquelme Date: Mon, 25 Sep 2023 15:36:37 +0200 Subject: [PATCH] instrucciones en el readme --- README.md | 44 ++++++++++---------------------------------- 1 file changed, 10 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 42fc9b5..797b6cc 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,17 @@ -# PlantasCalc (plantas) +# Quasar App (ejercicio_quasar) -Cálculo de los días de riego de mis plantas - -## Install the dependencies -```bash -yarn -# or -npm install +### Crear la imagen +``` +docker build -t regar2509231522 . ``` -### Start the app in development mode (hot-code reloading, error reporting, etc.) -```bash -quasar dev +### borrar y crear contenedor +``` +docker rm -f plantas && docker run -d --name=plantas --restart unless-stopped -p 33331:80 regar2509231522 ``` - -### Lint the files -```bash -yarn lint -# or -npm run lint +### purgar docker ``` - - -### Format the files -```bash -yarn format -# or -npm run format +docker system prune +docker image prune -a ``` - - - -### Build the app for production -```bash -quasar build -``` - -### Customize the configuration -See [Configuring quasar.config.js](https://v2.quasar.dev/quasar-cli-vite/quasar-config-js).