36 lines
482 B
Markdown
36 lines
482 B
Markdown
# GPSTracker [frontend]
|
|
|
|
This is the root folder for the GPSTracker frontend.
|
|
|
|
See [main `README`](../README.md) for more information.
|
|
|
|
## Building the frontend
|
|
|
|
```sh
|
|
make
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Imported from the root level - see [`.env.example`](../.env.example).
|
|
|
|
## Running the frontend
|
|
|
|
```sh
|
|
npm run start
|
|
```
|
|
|
|
## Project Setup
|
|
|
|
### Compile and Hot-Reload for Development
|
|
|
|
```sh
|
|
cd frontend
|
|
npm run dev
|
|
```
|
|
|
|
### Lint with [ESLint](https://eslint.org/)
|
|
|
|
```sh
|
|
npm run lint
|
|
```
|