Skip to content

Commit

Permalink
Upload new site
Browse files Browse the repository at this point in the history
  • Loading branch information
richgarner71 committed Sep 30, 2020
1 parent ddf012c commit fc4dead
Show file tree
Hide file tree
Showing 311 changed files with 12,216 additions and 30,282 deletions.
34 changes: 34 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: 2
jobs:
build:
docker:
- image: circleci/ruby:2.6-node-browsers-legacy
steps:
- checkout
- restore_cache:
keys:
- v2-npm-{{ checksum "package-lock.json" }}
- v2-npm-
- run: npm install
- save_cache:
key: v2-npm-{{ checksum "package-lock.json" }}
paths:
- node_modules
- restore_cache:
keys:
- v2-bundle-{{ checksum "Gemfile.lock" }}
- v2-bundle-
- run: bundle install --path vendor/bundle
- save_cache:
key: v2-bundle-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
- run: npm run build
- run: npm run test


workflows:
version: 2
commit:
jobs:
- build
14 changes: 14 additions & 0 deletions .dependabot/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "weekly"
default_reviewers:
- "davemcorwin"
- "amirbey"
default_assignees:
- "davemcorwin"
automerged_updates:
- match:
dependency_type: "all"
update_type: "semver:minor"
18 changes: 1 addition & 17 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
package-lock.json binary
53 changes: 6 additions & 47 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,6 @@
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
_site
.sass-cache
.jekyll-metadata
node_modules
.bundle
.jekyll-cache/
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.6.6
11 changes: 11 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: default
---


<div class="grid-row grid-gap">
<div class="usa-layout-docs-main_content desktop:grid-col-9 usa-prose">
<h1>>Page not found</strong></h1>
<p>The requested page could not be found (404).</p>
</div>
</div>
171 changes: 0 additions & 171 deletions CB_bio.html

This file was deleted.

Loading

0 comments on commit fc4dead

Please sign in to comment.