Skip to content

Official TODO Website that containts TODO Guides, OSPO use cases and more resources to advance in the OSPO journey

License

Notifications You must be signed in to change notification settings

adaaaam/todogroup.org

 
 

Repository files navigation

Netlify Status License: CC BY 4.0 Site

The TODO Group website

The TODO Group website serves as the central hub for our community, hosting resources, blog content, guides, and information about OSPOs (Open Source Program Offices). All contributions should align with our mission to provide vendor-neutral, practical resources that help organizations run effective open source programs.

Contributing

Please read our contributing guidelines to get started

Development Setup

This site is built using the Hugo static site generator and hosted on Netlify. The site uses the Dot-Org Theme for Hugo as a base and then has its own customisations.

In order to build or locally develop the website, you'll need to install Hugo and node.js.

If you don't have them installed, you can install them via brew.sh.

# macOS
brew install hugo node

Then following these instructions:

  1. Clone this repo to a local directory on your computer.

  2. Navigate to the newly created directory, and pull in the theme:

git submodule update --init --recursive
  1. Install dependencies:
npm install
  1. Build the site:
npm run build
  1. Start the local server with live reload:
npm run start

Other npm commands for working with a local instance

  • npm run dev:start - Starts the local dev environment using exampleSite
  • npm run dev:start:with-pagefind - Starts the local dev environment using exampleSite with working pagefind search
  • npm run dev:build - Builds the site using exampleSite

To run in docker

As mentioned above, fork and clone this repository, run git submodule update --init --recursive, then run following:

./run-hugo-in-docker.sh

This command should give an address you can visit on your local machine to see the local copy of your site. Typically this is localhost:1313. Just navigate to http://localhost:1313 in your browser and you should see the site running.

If modifying the theme files, you should never edit the theme that is imported via Git Submodule, as otherwise the changes will be overwritten or lost the next time the theme is updated. Changes should be made in override files inside the root directory as this will override the theme directory. Read docs.

Updating the theme

Some brief notes on how to update the theme:

From the site root:

git submodule init
git submodule update
cd themes/dot-org-hugo-theme
git fetch
git checkout main
git pull origin main
cd ../..
git add themes/dot-org-hugo-theme
git commit -m "Updated submodule to the latest version of dot-org-hugo-theme" -s

About

Official TODO Website that containts TODO Guides, OSPO use cases and more resources to advance in the OSPO journey

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 74.2%
  • SCSS 19.3%
  • Shell 3.0%
  • Makefile 2.8%
  • JavaScript 0.7%