{"id":41343116,"url":"https://github.com/rodekruis/510-data-catalog","last_synced_at":"2026-01-23T06:53:16.411Z","repository":{"id":41958875,"uuid":"405945352","full_name":"rodekruis/510-data-catalog","owner":"rodekruis","description":"The Project is CKAN based Data Catalog Portal for 510","archived":false,"fork":false,"pushed_at":"2024-04-04T12:41:11.000Z","size":1292,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":5,"default_branch":"develop","last_synced_at":"2024-04-09T15:05:40.839Z","etag":null,"topics":["catalog","ckan","data","opendata"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rodekruis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-09-13T11:28:22.000Z","updated_at":"2024-01-14T07:49:37.000Z","dependencies_parsed_at":"2022-08-12T00:40:40.759Z","dependency_job_id":"54dcddbb-06cc-40ba-988e-f3fecb933a2e","html_url":"https://github.com/rodekruis/510-data-catalog","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rodekruis/510-data-catalog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodekruis%2F510-data-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodekruis%2F510-data-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodekruis%2F510-data-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodekruis%2F510-data-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rodekruis","download_url":"https://codeload.github.com/rodekruis/510-data-catalog/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodekruis%2F510-data-catalog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28682263,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","response_time":59,"last_error":"SSL_read: 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":["catalog","ckan","data","opendata"],"created_at":"2026-01-23T06:53:16.312Z","updated_at":"2026-01-23T06:53:16.406Z","avatar_url":"https://github.com/rodekruis.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 510 Data Catalog Portal\n\n# Developer Documentation\n\n## Prerequisite\n\n- docker\n- [make](https://stackoverflow.com/questions/32127524/how-to-install-and-use-make-in-windows)\n\n## Steps to Run in Local environment\n\n- Clone the repository\n- Update the submodules by using `git submodule update --init --recursive`\n- Copy the `.env.example` as `.env` and modify the variables in the file as per your need and replace the variables with the actual values of the environment.\n- Run the make file to create the images (base image and the service image) by the `make` command. \n\t- If you are using Windows, refer [below](#installing-supporting-tools) for instructions on setting up the `make` function.\n    - Run `make` command\n- Build the Development Environment for 510 Data Catalog using the docker-compose by `docker-compose -f docker-compose-dev.yml build`.\n\t- If you are using Windows, ensure that all the files are converted to LF line breaks before this step. This can be acheived using `dos2unix` script. For further instructions, refer [below](#installing-supporting-tools)\n- Once the Build is done, run the project by `docker-compose -f docker-compose-dev.yml up`.\n    - If DB related issue comes while setting up the environment, please exec into container using `docker exec -it ckan bash` and then run `ckan db init`\n\nOnce the project is up, you can browse the project using http://localhost:5000 or the `CKAN_SITE_URL` you used in `.env`\n\nThe development setup uses the `src/` directory for all the custom extensions and required extension (using git submodules) and mount it is as volume to docker so the changes made in `src/` will be directly updated in the docker setup. For more details, please follow [developer guide](documentation/developers_guide.md)\n\n## Steps to Run using docker-compose\n\nFollow the above steps mentioned in the [local environment setup](#steps-to-run-in-local-environment) but replace the `docker-compose-dev.yml` with `docker-compose.yml`\n\n## Installing Supporting Tools\n\n- **Make Command**: The `make` command should be available on all Linux systems. If you are developing on Windows, you can try one of these:\n\t- Installing any GNU Compiler system such as MinGW or Cygwin should provide the `make` command.\n\t- Install [Chocolatey](https://chocolatey.org/install) Package Manager and install its `make` package using the command below. This method is tested but will require administrator access to install Chocolatey.\n\t\n\t    ```\n        choco install make\n        ```\n\t\n- **Dos2Unix**: Dos2Unix is a handy command-line utility to convert Windows text files (using CRLF line breaks) to Linux/UNIX text files (using LF line breaks).\n\t- Download [Dos2Unix](https://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.4.2-win64.zip) ZIP file and extract its contents.\n\t- The zip contains a bin folder. Add the path up to the bin folder in your System's PATH environment variables to use the script in the terminal.\n\t- To convert all files in a folder and its subfolders from CRLF to LF format, open a terminal in the folder and run one of the following:\n\t\n\t  ```\n\t  // For GitBash Terminal Users\n\t  find . -type f -print0 | xargs -0 dos2unix\n\t  // For Windows Powershell Terminal users\n\t  Get-ChildItem .\\ -Recurse -File | select FullName | % { dos2unix $_.FullName }\n\t  ```\n\t\n\t- The conversion process will take a few minutes to complete.\n\n## Documentation to update Metadata fields for the dataset\n\nTo update the metadata fields please follow the [instructions](documentation/update_metadata_fields.md)\n\n## Security Bugs and Vulnerability\n\nFor All security related issue please follow the [security guide](SECURITY.md)\n\n## Developer's Guide\n\nPlease follow the [developer guide](documentation/developers_guide.md) for the components, usage and contribution to the project.\n\n## Contributors\n\n\u003ca href=\"https://github.com/rodekruis/510-data-catalog/graphs/contributors\"\u003e\u003cimg src=\"https://contributors-img.web.app/image?repo=rodekruis/510-data-catalog\" /\u003e\u003c/a\u003e\n\n## Credits\n\nThanks to all the people who [contributed directly or indirectly.](documentation/credits.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodekruis%2F510-data-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frodekruis%2F510-data-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodekruis%2F510-data-catalog/lists"}