This web application aims to implement the AOA method according to Meyer & Pebesma (2021) and provide the user an easy-to-use interface.
Please make sure you are using NodeJS 16.x or above.
npm install
Using the local API:
Please make sure you are started the API from the repository digital-peaks/web-aoa.
npm run serve
Using the AWS API (no local API needed):
VUE_APP_API_URL=https://web-aoa.schnierer.info:8780/api npm run serve
For more details see the section Configuration.
npm run build
npm run test:unit
npm run lint
There are a few environment variables that can be set to configure the frontend dynamically.
Variable | Default | Description |
---|---|---|
VUE_APP_API_URL |
http://localhost/api |
API URL. |
For the Docker container you don't need to pass the
VUE_APP_
prefix. E.g.:docker run -e API_URL=https://example.com ...