Skip to content

Commit

Permalink
docs: add a description and additional setup information to readme (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrer authored Jul 24, 2024
1 parent 0fba3fc commit a52b9d7
Showing 1 changed file with 30 additions and 9 deletions.
39 changes: 30 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,57 @@
# QUIVER
# QuiVer Frontend

This template should help get you started developing with Vue 3 in Vite.
This is the frontend project for QuiVer. It's based on [Vue 3](https://vuejs.org/).
QuiVer is an optical character recognition (OCR) benchmarking platform and part of the [OCR-D Project](https://ocr-d.de).
This tool has a workflow view, which helps OCR-D users decide which workflow to use for their data by visualising metrics for predefined ground truth datasets.
It also has a project view where OCR-D developers can get an overview of the projects and their status for each release.

## Customize configuration
It can be found under <https://ocr-d.de/quiver-frontend/>.

See [Vite Configuration Reference](https://vitejs.dev/config/).
See also [QuiVer Benchmarks](https://github.com/OCR-D/quiver-benchmarks/) for more information about the benchmarking.

## Project Setup
## Setup

Requires node version 16 or higher.

Install dependencies:

```sh
npm install
```

### Compile and Hot-Reload for Development
### Development

Compile and run with hot-reload:

```sh
npm run dev
```

### Compile and Minify for Production
Access under `http://localhost:5173/quiver-frontend/`

### Production

Compile and minify for production:

```sh
npm run build
```

### Lint with [ESLint](https://eslint.org/)
Preview the production build:

```sh
npm run preview
```

### Linting

We use [ESLint](https://eslint.org/) for linting. Check your code with:

```sh
npm run lint
```

## Project Setup with Docker
## Setup with Docker

Build the Docker image:

Expand Down

0 comments on commit a52b9d7

Please sign in to comment.