Eldritch's landing page, a simple node.js app.
Make sure you have node.js installed, then:
$ npm install
You'll need to globally install a couple build tools:
$ npm install -g gulp
$ npm install -g foreman
This app uses a Postgres database to store email
signups. You'll need to setup an instance of Postgres somewhere, and set the
LANDING_DSN
environment variable to point to it:
$ export LANDING_DSN="postgres://username:password@host/dbname"
You'll also need to tell the app what port to run on. You can set this with the
LANDING_PORT
environment variable:
$ export LANDING_PORT=5000
Then, after making sure Postgres is running and accessible:
$ npm start