seanmarcia / publicgoods-scripts

Scripts to generate static site from WordPress

Home Page:http://digitalpublicgoods.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributor Covenant

publicgoods-scripts

Bash and Javascript scripts to generate the static site for the Digital Public Goods from a WordPress site. The scripts on this repo are not meant to be used directly, but rather used in the creation of automatic builds through a Continuous Integration (CI) framework, such as a GitHub Pages.

This is one of four interconnected repositories; refer to the publicgoods-website for an overview.

Configuration

This repository is managed with NPM version 7 workspaces which requires Node version 15 or higher. Read the workspaces documentation to know how to install and manage dependencies across packages in this repository.

๐Ÿ›  Development

To test the functionality of these scripts, you can run the following commands in sequence:

  1. npm i: Installs all the required project dependencies
  2. Clone the other interconnected repositories:
    git clone https://github.com/DPGAlliance/publicgoods-website.git ../publicgoods-website
    git clone https://github.com/DPGAlliance/publicgoods-candidates.git ../publicgoods-candidates
  3. ./scripts/static.bash: crawls a private instance of the WordPress website and saves a copy in ../publicgoods-website
  4. pushd packages/automation && node generate_dpgs.js && popd: generates the individual website pages for each vetted digital public good
  5. pushd packages/automation && node generate_nominees.js && popd: queries the GitHub API for activity data for each linked repo
  6. pushd packages/automation && node index.js && popd: generates the registry page
  7. pushd packages/registry && npm run build && popd: builds the React components associated with the registry
  8. ./scripts/moveFiles.bash: moves the React components generated above and the registry page into the website folder

To test the result:

  1. Change folders into the website repo: cd ../publicgoods-website
  2. Run a webserver: ./.develop.bash
  3. Point your browser to http://localhost:8080 to see the result

๐Ÿš€ Deployment

When a merge is pushed onto the main branch in the DPGAlliance/publicgood-scripts repository, no build is pushed to the DPGA public website. The public website is updated under these 3 circumstances:

You can manually trigger a new website build by visiting the Actions tab on the publicgoods-candidates repo, though you need Write permissions on that repo:

  1. Visit the Actions link
  2. Click on Automatic Build on the left column.
  3. Click on Run Workflow on the right side, (keep the main branch selected) and click again the green Run Workflow button.

Wait for about 10 minutes, and the new website will reflect the changes from the DPGAlliance/publicgood-scripts repository.

About

Scripts to generate static site from WordPress

http://digitalpublicgoods.net

License:MIT License


Languages

Language:JavaScript 88.0%Language:CSS 10.6%Language:Shell 1.5%