config.yml
title: "CarlFurrow.com"
subtitle: ""
author:
name: Carl Furrow
uri: http://carlfurrow.com
# email: you@yourdomain.com
cache: false
content: content
production:
cache: true
content: PATH_TO_YOUR_CONTENT_FOLDER #=> e.g. /home/username/nesta/content
# If in production, (i.e. on Dreamhost) set the GEM_PATH to my local
# home directory, and not use the Dreamhost server's GEM_PATH
if( ENV['RACK_ENV'] == 'production' )
ENV['GEM_PATH'] = "/home/cfurrow/.gems"
Gem.clear_paths
end
require "rack"
require "rubygems"
require "sinatra"
require "./app"
run Nesta::App