Skip to content

CMSgov/bcda-static-site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c9571c1 · Sep 17, 2019

History

59 Commits
Aug 2, 2019
Jul 25, 2019
Sep 17, 2019
Sep 16, 2019
Sep 17, 2019
Sep 17, 2019
Sep 17, 2019
Sep 17, 2019
Aug 1, 2019
Sep 16, 2019
Sep 16, 2019
Sep 16, 2019
Aug 1, 2019
Sep 16, 2019
Jun 29, 2019
Sep 17, 2019

Repository files navigation

Beneficiary Claims Data API

A static Jekyll site for the BCDA splash page: https://sandbox.bcda.cms.gov

Requirements

It is assumed that the environment already has these installed:

  • rbenv or rvm to install versioned ruby
  • ruby currently using 2.4
  • jekyll currently using 3.5.2

Installation

  1. $ gem install bundler <—install Gem bundler
  2. $ bundle install <—install Gem bundles

Build

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.

Using Docker for builds

Consistent and simple build process:

docker-compose -f docker-compose.yml build static_site
docker-compose -f docker-compose.yml run --rm static_site

This process uses a Docker container to execute bundle exec jekyll build , compiling site files ino the same _site directory used when executing this command on the Docker host. Advantage here is that there's no need to install ruby or any dependencies on the machine building the static site — Docker takes care of all that.

Using Docker for serving

To host the site in Docker, accessible at http://localhost:4000/:

docker-compose run --publish 4000:4000 --rm --entrypoint "bundle exec jekyll serve -H 0.0.0.0" static_site

This is a convenience meant to ease integration of static site builds with the larger BCDA CI/CD pipeline.