Advertisement
Guest User

Untitled

a guest
May 4th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. module.exports = {
  2. servers: {
  3. one: {
  4. host: '192.168.99.100', // your server ip
  5. username: 'root',
  6. // pem: 'absolute/path/to/ssh/key',
  7. password:'guest'
  8. // or leave blank for authenticate from ssh-agent
  9. }
  10. },
  11.  
  12. meteor: {
  13. name: 'telescope-nova', // name of your docker container
  14. path: '../', // relative path to your app ; if this file is in /my-app/.deploy, this makes senses as referring to /my-app
  15. servers: {
  16. one: {}
  17. },
  18. buildOptions: {
  19. serverOnly: true,
  20. },
  21. env: {
  22. ROOT_URL: 'http://nova-app.com', // absolute url of your deploy ; it can be replaced by http://1.2.3.4 if nginx is not setup
  23. MONGO_URL: 'mongodb://localhost/meteor'
  24. },
  25. docker: {
  26. image:'abernix/meteord:base' // docker image working with meteor 1.4 & node 4
  27. },
  28. deployCheckWaitTime: 60
  29. },
  30.  
  31. mongo: {
  32. oplog: true,
  33. port: 27017,
  34. servers: {
  35. one: {},
  36. },
  37. },
  38. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement