Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.16 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.16 KB

BradMcGonigle.com

This repo contains the personal website of Brad McGonigle that is built with Gatsby and Bulma running on Netlify.

It follows the JAMstack architecture by using Git as a single source of truth, and Netlify for continuous deployment and CDN distribution.

Prerequisites

Access Locally

$ git clone https://github.com/bradmcgonigle/bradmcgonigle.git
$ cd bradmcgonigle
$ yarn
$ yarn develop

Getting Started (Without Netlify)

$ gatsby new [SITE_DIRECTORY_NAME] https://github.com/bradmcgonigle/bradmcgonigle/
$ cd [SITE_DIRECTORY_NAME]
$ yarn build
$ yarn serve

Debugging

Windows users might encounter node-gyp errors when trying to npm install. To resolve, make sure that you have both Python 2.7 and the Visual C++ build environment installed.

npm config set python python2.7
npm install --global --production windows-build-tools

Full details here