27 lines
382 B
Markdown
27 lines
382 B
Markdown
# The bluefire frontend
|
|
|
|
## Project setup
|
|
```
|
|
yarn install
|
|
vim .env
|
|
# Edit VUE_APP_API_URL to point to API endpoint
|
|
```
|
|
|
|
### Compiles and hot-reloads for development
|
|
```
|
|
yarn serve
|
|
```
|
|
|
|
### Compiles and minifies for production
|
|
```
|
|
yarn build
|
|
```
|
|
|
|
### Lints and fixes files
|
|
```
|
|
yarn lint
|
|
```
|
|
|
|
### Customize configuration
|
|
See [Configuration Reference](https://cli.vuejs.org/config/).
|