CMSgov / dpc-static-site

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data at the Point of Care

A static Jekyll site for the DPC welcome, FAQ, and documentation pages.

https://dpc.cms.gov

Pre-requisite: Installing and Using Pre-commit

Anyone committing to this repo must use the pre-commit hook to lower the likelihood that secrets will be exposed.

Step 1: Install pre-commit

You can install pre-commit using the MacOS package manager Homebrew:

brew install pre-commit

Other installation options can be found in the pre-commit documentation.

Step 2: Install the hooks

Run the following command to install the gitleaks hook:

pre-commit install

This will download and install the pre-commit hooks specified in .pre-commit-config.yaml.

Development

Docker Development

It is recommended to run the site using Docker. This standardizes the build process for all developers and avoids complex conflicts with library versioning.

Prerequisites:

To run the website with file updates reflected automatically at http://localhost:4001/:

make serve

To do a one-time build of the static website files directly into the _site directory:

make build

Native Installation

If you'd like to run the site natively without Docker, follow the instructions below.

Requirements

It is assumed that the environment already has these installed:

  • ruby currently using 2.7.1
  • jekyll currently using 4.2.0
  • npm currently using 6.13.4

Navigate to the repository and install the appropriate Gem file and package.json file.

  1. gem install bundler <— install Gem bundler
  2. bundle install <— install Gem bundles
  3. npm install <— install package.json dependencies

Running or Building the Application

Jekyll builds the CSS and HTML pages. Run bundle exec jekyll serve from the project root for a local build. By default, the site will run in http://localhost:4000/. You can also run bundle exec jekyll build to compile the site files into the _site directory.

About


Languages

Language:HTML 99.2%Language:CSS 0.4%Language:JavaScript 0.2%Language:SCSS 0.2%Language:Java 0.0%Language:Shell 0.0%Language:Ruby 0.0%Language:Makefile 0.0%Language:Visual Basic 6.0 0.0%