code-review/frontend/README.md

22 строки
536 B
Markdown
Исходник Постоянная ссылка Обычный вид История

# Code Review Frontend
2019-07-19 18:11:05 +03:00
This is a simple Vue.JS administration frontend, the production instance is publicly available at https://code-review.moz.tools/
2019-07-19 18:11:05 +03:00
You'll need Node 16+ to be able to build it.
## Developer setup
2019-07-19 18:11:05 +03:00
```
npm install
npm run build # to build once in production mode
npm run build:dev # to build once in development mode
npm run start # to start a dev server on port 8010
2019-07-19 18:11:05 +03:00
```
## Linting
eslint is available through:
- `npm run lint` to list potential errors,
- `npm run lint:fix` to automatically fix these errors.