Skip to content

Instantly share code, notes, and snippets.

@mandric
Created March 1, 2012 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandric/1950655 to your computer and use it in GitHub Desktop.
Save mandric/1950655 to your computer and use it in GitHub Desktop.
exports.env = {
// the default env will be used when you just do "kanso push"
default: {
db: "http://username:password@hostname:5984/dbname"
},
// you can also define named environments this one will
// be used when you do "kanso push production"
production: {
db: "http://username:password@production-hostname:5984/production-db",
// tells the module package to minify modules.js
minify: true,
// useful when running behind a virtual host and
// you want to force the baseURL to something
baseURL: "/foo"
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment