33 lines
383 B
Markdown
33 lines
383 B
Markdown
# MauMau-Client-Vue
|
|
|
|
## Env variables
|
|
|
|
```env
|
|
VITE_API_ENDPOINT=http://{url}:{port}
|
|
VITE_WEBSOCKET_ENDPOINT=ws://{url}:{port}
|
|
```
|
|
|
|
## Project Setup
|
|
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
### Compile and Hot-Reload for Development
|
|
|
|
```sh
|
|
npm run dev
|
|
```
|
|
|
|
### Type-Check, Compile and Minify for Production
|
|
|
|
```sh
|
|
npm run build
|
|
```
|
|
|
|
### Lint with [ESLint](https://eslint.org/)
|
|
|
|
```sh
|
|
npm run lint
|
|
```
|