source: Dev/trunk/src/server/env.js @ 479

Last change on this file since 479 was 479, checked in by hendrikvanantwerpen, 11 years ago

Changes for validation

  • Split command line wrappers from processing logic.
  • Created a JSON Schema for the database
  • Allow off-line validation of database documents.
File size: 212 bytes
Line 
1var couchServerURL = (process.env.CLOUDANT_URL || 'http://localhost:5984')+'/';
2module.exports = {
3    port: process.env.PORT || 5000,
4    couchServerURL: couchServerURL,
5    couchDbURL: couchServerURL+'qed',
6};
Note: See TracBrowser for help on using the repository browser.