A simple statically-generated site, implemented in Metalsmith.
Currently in beta.
- Clone the repo
npm install && bower install- Create a new
.envfile at the project root. (e.g.touch .env && nano .env) - Add the following keys to
.env(You'll need to contact the project admin privately for API keys):
ENV=development
CONTENTFUL_ACCESS_TOKEN=<contentful access token>
CONTENTFUL_SPACE=<contenful space>
- Build the site using
node index - The site builds to the
./destdirectory --- the simplest way to serve this is to install http-server globally (npm install -g http-server), open a new Terminal tab,cd ./dest && http-server. You can leave the server running between builds.