2018-04-24 07:40:05 +00:00
|
|
|
# Settings section
|
2018-03-09 16:46:34 +00:00
|
|
|
|
2018-04-24 07:40:05 +00:00
|
|
|
> Nextcloud settings with Vue
|
2018-03-09 16:46:34 +00:00
|
|
|
|
|
|
|
## Build Setup
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
# install dependencies
|
2018-04-24 07:40:05 +00:00
|
|
|
make dev-setup
|
2018-03-09 16:46:34 +00:00
|
|
|
|
2018-04-24 07:40:05 +00:00
|
|
|
# build for development
|
|
|
|
make build-js
|
2018-03-09 16:46:34 +00:00
|
|
|
|
2018-04-24 07:40:05 +00:00
|
|
|
# build for development and watch edits
|
|
|
|
make watch-js
|
2018-03-09 16:46:34 +00:00
|
|
|
|
2018-04-24 07:40:05 +00:00
|
|
|
# build for production with minification
|
|
|
|
make build-js-production
|
2018-06-12 08:23:00 +00:00
|
|
|
|
|
|
|
# clean output files
|
|
|
|
make clean
|
|
|
|
```
|