Skip to content

Latest commit

 

History

History
77 lines (58 loc) · 1.52 KB

README.md

File metadata and controls

77 lines (58 loc) · 1.52 KB

eodash vue app

Resources

Vuetify Component Framework

https://vuetifyjs.com/en/getting-started/quick-start/

Component and UI framework based on vue.js and Material Design.

Material Design Icons

https://materialdesignicons.com/

Collection of icons in material design. Use mdi- with icon name, for example:

<v-icon>mdi-view-dashboard</v-icon>

Openlayers Map

https://openlayers.org/

Used to build interactive map.

Project setup

npm install

In order for most "EO Data" links to work you need to use a proper SH instance ID (SH_INSTANCE_ID) in public/shConfig.js. Obtain a valid one from https://eurodatacube.com

To ignore the changes to this file run:

git update-index --assume-unchanged public/shConfig.js

To revert the ignoring run:

git update-index --no-assume-unchanged public/shConfig.js

Compiles and hot-reloads for development

npm start

The dashboard using the included data should now be accessible at http://localhost:8080/. Other configurations as defined in src/appConfig.js need additional data which is not included in this repository.

Compiles and minifies for production

npm run build

Run your tests

npm run test

Lints and fixes files

npm run lint

Run your end-to-end tests

npm run test:e2e

Bump app version

npm version patch // last digit
npm version minor // middle digit
npm version major // first digit

Customize configuration

See Configuration Reference.