This project's static Pages are built by [GitLab CI][ci], following the steps
defined in [`.gitlab-ci.yml`](.gitlab-ci.yml):
```
## Add data
variables:
EXPORT_DIR: "/var/www/html/pages"
pages-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
stage: deploy
script:
- mkdir "$EXPORT_DIR/$CI_PROJECT_NAME"
- cp -r public/* "$EXPORT_DIR/$CI_PROJECT_NAME"
tags:
- production
only:
- master
```
The above example expects to put all your HTML files in the `public/` directory.