Current environment
- Ubuntu 18.04
- PostgreSQL 13.1
- PostGIS 3.x.x + obsolete SFCGAL(somehow it was installed with PostGIS)
Target
- PostgreSQL 14.x
- Postgis 3.x.x
| #!/bin/bash | |
| GITLAB_URL="https://gitlab.my.site.com" | |
| GROUP_PATH="my-group" # Your group path | |
| TOKEN="" # Token with read_api + read_registry + read_repository | |
| PER_PAGE=100 # Max repos per page | |
| OUTPUT_FILE="repo_analysis.csv" | |
| echo "Generating repository analysis report..." |