{"id":21594180,"url":"https://github.com/ornl/software-catalog","last_synced_at":"2026-01-21T14:03:50.693Z","repository":{"id":82736643,"uuid":"543670471","full_name":"ORNL/software-catalog","owner":"ORNL","description":"Home of the ORNL software catalog","archived":false,"fork":false,"pushed_at":"2026-01-18T03:19:53.000Z","size":65800,"stargazers_count":6,"open_issues_count":1,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-18T14:58:02.971Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ORNL.png","metadata":{"files":{"readme":"README.md","changelog":"news/README.md","contributing":"CONTRIBUTING.md","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":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-30T15:39:20.000Z","updated_at":"2026-01-18T03:19:57.000Z","dependencies_parsed_at":"2023-10-15T05:35:21.453Z","dependency_job_id":"7c115764-d15b-487f-890c-74f481fd352c","html_url":"https://github.com/ORNL/software-catalog","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ORNL/software-catalog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORNL%2Fsoftware-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORNL%2Fsoftware-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORNL%2Fsoftware-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORNL%2Fsoftware-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ORNL","download_url":"https://codeload.github.com/ORNL/software-catalog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORNL%2Fsoftware-catalog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28634787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"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-24T17:16:25.204Z","updated_at":"2026-01-21T14:03:50.687Z","avatar_url":"https://github.com/ORNL.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ORNL Software Catalog\n[![Nightly Update](https://github.com/ORNL/software-catalog/actions/workflows/update.yml/badge.svg?event=schedule)](https://github.com/ORNL/software-catalog/actions/workflows/update.yml)\n\nOriginal Author: Ian Lee \u003clee1001@llnl.gov\u003e\n\nWelcome to the Oak Ridge National Laboratory software portal! The purpose of this software portal is to serve as a hub for open source software that is produced by Oak Ridge National Laboratory.\n\nORNL produces software on a daily basis. Some of this software is used only internally, other components are licensed for use by external partners and collaborators, still other software is released, or even actively developed, in the open on software hosting platforms such as GitHub.com.\n\n## Prerequisites\n\nBefore you begin, make sure you have working installs of Git, Ruby, and [Bundler](https://bundler.io/). You will need these tools for development.\n\n## Getting Started\n\nTo work locally, first clone into the repository:\n\n```shell\ngit clone https://code.ornl.gov/rse-public/ornl-software-catalog\n```\n\nMake sure you are in the directory you just created by running `cd ornl-software-catalog` Then you can use `bundler` to install the Ruby dependencies (see the [Jekyll installation docs](https://jekyllrb.com/docs/installation/) for step-by-step guides to setting this up):\n\n```shell\nbundle install\n```\n\nRunning this will install everything in your Gemfile (including Jekyll).\n\nNext, run the development web server with:\n\n```shell\nbundle exec jekyll serve --livereload --incremental\n```\n\nFinally, open \u003chttp://localhost:4000\u003e in a web browser.\n\n### Tips\n\nThe gems in your sourcefile get updated frequently. It is a good idea to occasionally run `bundle update` from within your project's root directory to make sure the software on your computer is up to date.\n\nSometimes there can be dependency conflicts if your local version of Ruby is different from this repo or GitHub pages deployment settings. You can find the version number of each of GitHub Page's current dependency's [here](https://pages.github.com/versions/). You can often avoid dependency issues if you use the same versions, including for Ruby.\n\nFor example, the default version of Ruby used to deploy GitHub Pages on github.com as of 2021-04-08 was Ruby 2.7.1. If you tried running Ruby version 3.0.0 locally on macOS, you'll need to do some extra steps to correctly install the dependencies for this repository. You'd need to run `bundle add webrick` as it is no longer a prepackaged dependency with Ruby in 3.0.0. You may also need to run `gem install eventmachine -- --with-openssl-dir=/usr/local/opt/openssl@1.1` as MacOS \u003e10.14 doesn't use OpenSSL from the same path as is still assumed to be in by eventmachine.\n\n## Contact\n\nIf you have any questions, please don't hesitate to contact the catalog administrator (mailto:software@ornl.gov).\n\nYou can also find us on our mailing list: \u003csoftware@ornl.gov\u003e.\n\n# Release\n\nThe code of this site is released under the MIT License. For more details, see the\n[LICENSE](LICENSE) File.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fornl%2Fsoftware-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fornl%2Fsoftware-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fornl%2Fsoftware-catalog/lists"}