This repository is for establishing and disseminating standards related to accessibility, interoperability, documentation, and reuse of computational models. Please see our mission and charter for more details.
You can contribute to this site by following the directions at https://openmodelingfoundation.github.io/contribute/ - the process of proposing and accepting changes to OMF standards will be finalized once we have established our governance structure.
This GitHub pages site is generated with hugo using the docsy theme and can be built locally by following these instructions:
To create a local setup of this site you can install Docker
and docker-compose
or hugo
and yarn
on your local operating system.
Clone this repository via git clone --recurse-submodules -j8 https://github.com/openmodelingfoundation/openmodelingfoundation.github.io.git
If you have Docker and docker-compose installed, you can use the Makefile in the repository to automatically serve a local copy of the site to test out any changes:
Build and start a docker container with a hot-reloading hugo server
that you can visit in your browser at http://localhost:1313
via
% make serve
Open a hugo shell in the docker container
% make shell
If you don't have docker installed and don't mind installing things in your operating system, you can do the following:
- Install the extended version of hugo from the releases page.
- Install yarn via your operating system's package manager or from the yarn site.
- Run
yarn install
in the base directory - Use hugo commands to render the site.
% hugo serve # dev server without drafts
% hugo serve -D # dev server with drafts