Guest User

Untitled

a guest
Nov 13th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. var Config =
  2. {
  3. Server :
  4. {
  5. Server.IP : #ServerIP
  6. Server.Port : #ServerpPort
  7.  
  8. },
  9. SqlConfig:
  10. {
  11. user: '#Sqluser',
  12. password: '#Sqlpassword',
  13. server: '#Sqlserverip',
  14. database: '#sqldbname',
  15.  
  16. },
  17. MongoConfig:
  18. {
  19. dbname: '#Mongodbname',
  20. url: 'mongodb://#mongodbconnection:port/mongodbname'
  21. },
  22.  
  23. }
  24. module.exports = Config;
  25.  
  26. #ServerIP = "1.2.3.4"
  27. #ServerpPort ="5210"
  28. #Sqluser = "sa"
  29. #Sqlpassword = "password"
  30. #Sqlserverip = "100.112.112.112\SQLSERVER1"
  31. #sqldbname = "dbproduction"
  32. #Mongodbname = "mongodpprod"
  33. #mongodbconnection= "102.121.341.241:27017/DomainMaster"
Add Comment
Please, Sign In to add comment