update README to include docker-compose run

This commit is contained in:
RcleydsonR 2022-10-28 17:04:46 -03:00
parent a80585b435
commit 70d3162146

View File

@ -21,26 +21,37 @@ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has a
See [Vite Configuration Reference](https://vitejs.dev/config/). See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup ## Project Setup (with yarn)
```sh ```sh
npm install yarn
``` ```
### Compile and Hot-Reload for Development ### Compile and Hot-Reload for Development
```sh ```sh
npm run dev yarn lint
``` ```
### Type-Check, Compile and Minify for Production ### Type-Check, Compile and Minify for Production
```sh ```sh
npm run build yarn build
``` ```
### Lint with [ESLint](https://eslint.org/) ### Lint with [ESLint](https://eslint.org/)
```sh ```sh
npm run lint yarn lint
```
## Project Setup (with docker-compose)
### Dependencies
1. Install [Docker](https://docs.docker.com/install/linux/docker-ce/ubuntu/);
2. Install [Docker Compose](https://docs.docker.com/compose/install/).
### In the main project folder, build and start the application with the command:
```sh
docker-compose up
``` ```