{"id":21614683,"url":"https://github.com/eea/copernicus_quality_tools","last_synced_at":"2026-04-08T15:00:41.804Z","repository":{"id":34774781,"uuid":"116235829","full_name":"eea/copernicus_quality_tools","owner":"eea","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-01T13:10:19.000Z","size":146330,"stargazers_count":9,"open_issues_count":4,"forks_count":4,"subscribers_count":14,"default_branch":"master","last_synced_at":"2026-04-03T02:17:31.796Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"eupl-1.2","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-01-04T08:38:28.000Z","updated_at":"2026-04-01T13:10:25.000Z","dependencies_parsed_at":"2024-05-02T10:45:04.080Z","dependency_job_id":"bbc5fbe8-5595-4250-947a-0c71558cdbfa","html_url":"https://github.com/eea/copernicus_quality_tools","commit_stats":null,"previous_names":[],"tags_count":272,"template":false,"template_full_name":null,"purl":"pkg:github/eea/copernicus_quality_tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eea%2Fcopernicus_quality_tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eea%2Fcopernicus_quality_tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eea%2Fcopernicus_quality_tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eea%2Fcopernicus_quality_tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eea","download_url":"https://codeload.github.com/eea/copernicus_quality_tools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eea%2Fcopernicus_quality_tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31560476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-24T22:08:54.716Z","updated_at":"2026-04-08T15:00:41.608Z","avatar_url":"https://github.com/eea.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EEA CLMS QC Tool\n\nThe application is composed of:\n* Front-end user interface, alias web console;\n* Worker Service;\n\n# Documentation\n\nDocumentation of the QC tool, and specification of supported QA checks is available at https://github.com/eea/copernicus_quality_tools/wiki\n\n# Reporting Issues\n\nPlease report any issues in the QC tool via GitHub:\n\n* Go to https://github.com/eea/copernicus_quality_tools/issues and click *New Issue*.\n* Sign-in with your GitHub account (or create a new GitHub account if you don't have one).\n* Describe your issue. When describing an issue, please include the QC tool version and steps to reproduce.\n* The development team will investigate the issue and get back to you.\n\n# Prerequisities\n\n* docker version 1.13 or higher, see https://docs.docker.com/install/linux/docker-ce/ubuntu/;\n* docker-compose 1.21 or higher, see https://docs.docker.com/compose/install/#install-compose;\n\n* Note: docker-compose version 3 file format is used. In case of errors, please upgrade to a newer version.\n\n* For installation on Windows, see [docker/NOTES.windows](docker/NOTES.windows.md).\n\n# Run the application\n\n(1) Go to the [latest release](https://github.com/eea/copernicus_quality_tools/releases)\n\n(2) Download the file `docker-compose.service_provider.yml`\n\n(3) (Optional) Adjust the file `docker-compose.service_provider.yml` in accord with your environment.  For example see [docker/docker-compose.igor.yml](docker/docker-compose.igor.yml).  The environment variables are described in [docker/NOTES.environ.txt](docker/NOTES.environ.txt).  There is also `docker-compose.eea.yml` prepared targeting eea infrastructure with submission feature enabled.\n\n(4) Run the application\n\n```\nsudo docker-compose -f ./docker-compose.service_provider.yml -p qc_tool_app up --scale worker=4\n```\n\n(5) You can reach the web console at any host address and port 8000.  For example, if you run the browser at the same host as docker containers, you can reach the application at http://localhost:8000.\n\n(6) For initial signing in use user name `guest` and password `guest`.\n\n(7) To upgrade to a new release, run:\n```\nsudo docker-compose -f ./docker-compose.service_provider.yml -p qc_tool_app pull\n```\nThis will instruct docker to re-download the latest QC tool release images from docker hub repository.\n\n# For developers\n\nIf you want to propagate your local source code into running containers you may apply docker bind mount.\nSuch a way you overlay the source code already built in the image at `/usr/local/src/copernicus_quality_tools`.\nFor advice see the example docker compose configuration [docker-compose.igor.yml](docker/docker-compose.igor.yml).\n\nThere are already some automated tests at `src/qc_tool/test`.\nSee the instructions in [NOTES.txt](src/qc_tool/test/NOTES.txt).\n\nThe qc_tool_frontend service uses sqlite database originally located at `/var/lib/qc_tool/frontend.sqlite`.\nThe initial database structure is made during docker build.\nThe `service_provider` and `eea` configurations use named volumes for persisting such database.\nYou are free to copy the database to other persistent location, however you must ensure setting up FRONTEND_DB_PATH properly.\n\n\n# Demo installation\n\nThe service is publicly available at: https://qc-copernicus.eea.europa.eu/ Demo login is user: guest, password: guest.\n\n# Product definitions\n\nQA check configurations for Copernicus products are defined in the [product_definitions](product_definitions) directory. Each product definition .json file contains a list of parametrized checks. For QC tool setup with editable product definitions, see instructions in [docker/NOTES.product_definitions](docker/NOTES.product_definitions.md).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feea%2Fcopernicus_quality_tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feea%2Fcopernicus_quality_tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feea%2Fcopernicus_quality_tools/lists"}