Advertisement
Guest User

Untitled

a guest
Aug 16th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. module.exports = {
  2. servers: {
  3. one: {
  4. host: '1.2.3.4',
  5. username: 'root'
  6. // pem:
  7. // password:
  8. // or leave blank for authenticate from ssh-agent
  9. }
  10. },
  11.  
  12. meteor: {
  13. name: 'app',
  14. path: '../app',
  15. servers: {
  16. one: {}
  17. },
  18. buildOptions: {
  19. serverOnly: true,
  20. },
  21. env: {
  22. ROOT_URL: 'app.com',
  23. MONGO_URL: 'mongodb://localhost/meteor'
  24. },
  25.  
  26. //dockerImage: 'kadirahq/meteord'
  27. deployCheckWaitTime: 60
  28. },
  29.  
  30. mongo: {
  31. oplog: true,
  32. port: 27017,
  33. servers: {
  34. one: {},
  35. },
  36. },
  37. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement