https://github.com/ornl/software-catalog
Home of the ORNL software catalog
https://github.com/ornl/software-catalog
Last synced: 5 months ago
JSON representation
Home of the ORNL software catalog
- Host: GitHub
- URL: https://github.com/ornl/software-catalog
- Owner: ORNL
- License: mit
- Created: 2022-09-30T15:39:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-01-18T03:19:53.000Z (5 months ago)
- Last Synced: 2026-01-18T14:58:02.971Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 62.8 MB
- Stars: 6
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: news/README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Notice: NOTICE
Awesome Lists containing this project
README
# ORNL Software Catalog
[](https://github.com/ORNL/software-catalog/actions/workflows/update.yml)
Original Author: Ian Lee
Welcome 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.
ORNL 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.
## Prerequisites
Before you begin, make sure you have working installs of Git, Ruby, and [Bundler](https://bundler.io/). You will need these tools for development.
## Getting Started
To work locally, first clone into the repository:
```shell
git clone https://code.ornl.gov/rse-public/ornl-software-catalog
```
Make 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):
```shell
bundle install
```
Running this will install everything in your Gemfile (including Jekyll).
Next, run the development web server with:
```shell
bundle exec jekyll serve --livereload --incremental
```
Finally, open in a web browser.
### Tips
The 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.
Sometimes 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.
For 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 >10.14 doesn't use OpenSSL from the same path as is still assumed to be in by eventmachine.
## Contact
If you have any questions, please don't hesitate to contact the catalog administrator (mailto:software@ornl.gov).
You can also find us on our mailing list: .
# Release
The code of this site is released under the MIT License. For more details, see the
[LICENSE](LICENSE) File.