Skip to content

Instantly share code, notes, and snippets.

@larzconwell
Created November 9, 2012 20:15
Show Gist options
  • Save larzconwell/4047951 to your computer and use it in GitHub Desktop.
Save larzconwell/4047951 to your computer and use it in GitHub Desktop.
var geddy = require('geddy');
geddy.start({
environment: 'production'
});
var config = {
model: {
defaultAdapter: 'memory'
}
, sessions: {
store: 'memory'
, key: 'sid'
, expiry: 14 * 24 * 60 * 60
}
};
module.exports = config;
var config = {
detailedErrors: false
, hostname: null
, port: 4000
};
module.exports = config;
{
"name": "node-example",
"version": "0.0.1-1",
"dependencies": {
"geddy": "0.6.x"
},
"subdomain": "geddy-example",
"scripts": {
"start": "app.js"
},
"engines": {
"node": "0.8.x"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment