Advertisement
Guest User

config.js

a guest
Jun 5th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*jslint node:true*/
  2. module.exports = {
  3.     deployment: {
  4.         port: 3333,
  5.         repoUrl: "https://github.com/arthurstomp/versatile",
  6.         user: "versatile.rocks.31459@gmail.com",
  7.         to: "versatile.rocks.31459@gmail.com",
  8.         userName: "versatile.rocks.31459",
  9.         password: "RAWR!!!!"
  10.     },
  11.     development: {
  12.         db: 'mongodb://localhost/versatile-dev',    // change books with your database
  13.         port: 3000,                             // change with your port number
  14.         debug: true                             // set debug to true|false
  15.     },
  16.     test: {
  17.         db: 'mongodb://localhost/versatile-tst',    // change books with your database
  18.         port: 3001,                             // change with your port number
  19.         debug: true                             // set debug to true|false
  20.     },
  21.     acceptance: {
  22.         db: 'mongodb://localhost/versatile-acc',    // change books with your database
  23.         port: 3002,                             // change with your port number
  24.         debug: true                             // set debug to true|false
  25.     },
  26.     production: {
  27.         db: 'mongodb://localhost/versatile-prd',    // change books with your database
  28.         port: 1337,                             // change with your port number
  29.         debug: false                            // set debug to true|false
  30.     }
  31. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement