This project's static Pages are built by [GitLab CI][ci], following the steps
defined in [`.gitlab-ci.yml`](.gitlab-ci.yml):
you can access the map using the link: https://transfer.hft-stuttgart.de/pages/hire-promotionskolleg-team/study-areas-maps/
```
variables:
EXPORT_DIR: "/var/www/html/pages"
## Add data
pages-master:
stage: deploy
script:
- mkdir "$EXPORT_DIR/$CI_PROJECT_NAME"
- cp -r public/* "$EXPORT_DIR/$CI_PROJECT_NAME"
tags:
- production
only:
- master
```
To add your study area please edit the pins.csv file and push the edits. you can convert adress to Lat, Lon using this website: https://www.latlong.net/convert-address-to-lat-long.html
The above example expects to put all your HTML files in the `public/` directory.