Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.1 KB

README.md

File metadata and controls

40 lines (30 loc) · 1.1 KB

Commerseum Display

This branch serves as the base repo for v1 of Commerseum Display

Info

Built with Gatsby, and Netlify CMS.

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

Prerequisites

  • Volta (volta.sh) use it to install node & yarn
  • Node (v10, v8)
  • Yarn

Getting Started

$ git clone https://github.com/nerds-with-keyboards/commerseum-display.git
$ cd commerseum-display
$ git checkout v1
$ yarn
$ yarn start

To test the CMS locally, you'll need run a production build of the site:

$ yarn run build
$ yarn run serve

Windows users

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