Skip to content

Latest commit

 

History

History
executable file
·
20 lines (15 loc) · 831 Bytes

README.md

File metadata and controls

executable file
·
20 lines (15 loc) · 831 Bytes

EffectiveAltruism.org

A simple statically-generated site, implemented in Metalsmith.

Currently in beta.

Running locally

  • Clone the repo
  • npm install && bower install
  • Create a new .env file 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 ./dest directory --- 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.