noaa-fisheries-integrated-toolbox / toolbox_web_templating

Templates and JSON model data for the toolbox web pages
1 stars 0 forks source link

Guide to the Toolbox Templating repo

Big picture, GitHub Branching

The setup for the FIT repo

  1. Try out new changes in a feature branch off of dev.
  2. Merge changes into dev. Once merged in, use a github action to build the html pages and deploy them to 3.
  3. The fit-dev repo is hosted on github pages. Navigate to noaa-fisheries-integrated-toolbox.github.io/fit-dev to preview the FIT website.
  4. Once confirming the dev pages look good, merge changes into 4 (for small changes, can consider squashing or rebasing instead). Once merged in, use a github action (done automatically) to build the html pages and deploy them to 5. Delete the dev branch and recreate it from (so that they are back in sync with the exact same commits).
  5. This is the production version of the NOAA fisheries site, advertised to the public.

Webpage addresses on production

redirect pages

Org Templating

This repository includes templates and JSON data for the FIT. python's jinja 2 is used to generate webpages from the html templates and JSON files (For R users, this approach is similar to using glue).

How to update or add tool landing pages

  1. Changes should be made in a branch off of dev. In model_list_dir subfolder add or update .json files. Examples of json are available in the readme. If onboarding a new tool, the issue from the onboard-and-update repo should have a json based on user input that can be copy/pasted in, then checked.
  2. If it is a new tool, add the name of the json file (minus the extension, case sensitive) to the list_of_models item in the models_all.json file.
  3. Changes can be checked locally using instructions in the "Creating Webpages Locally From Templates"
  4. After committing and pushing to dev, changes can be checked on the fit-dev site. If GitHub actions are failing, look at them and make changes.
  5. Once actions passing, share changed dev tool landing page with the person submitting the(e.g., if the tool is called, my-tool, the address would be https://noaa-fisheries-integrated-toolbox.github.io/fit-dev/my-tool). Allow them to request changes.
  6. If the author approves, open an PR to main, which KD will look at and merge in if passing checks.

Explanation of JSON metadata

JSON data can be validated using schema.

See descriptions in the schema_model_list.json file.

Creating Webpages Locally From Templates

Python and its libraries Jinja2 and requests need to be installed locally.

pip install jinja2
pip install requests

From bash, run:

python create_tool_landing_page.py dev_config.json
python create_catalog_landing_page.py dev_config.json # or prod_config.json if building the production site.
python create_site_index_page.py dev_config.json # or prod_config.json if building the production site.

These are just the commands in create_html.yml. Note that this will create new webpages that should NOT be saved to the repository.

To view the webpages from VS code, try using the Live Preview Extension. You may need to add .html to the end of a link in order to view it properly. Sometimes the embedded preview doesn't work, so a separate browser window will need to be opened instead.

Overview of GitHub Actions in toolbox_web_templating

GitHub actions code (YAML files) live in the .github/workflows directory.

Disclaimer

“The United States Department of Commerce (DOC) GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. DOC has relinquished control of the information and no longer has responsibility to protect the integrity, confidentiality, or availability of the information. Any claims against the Department of Commerce stemming from the use of its GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce. The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.”