Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. {
  2. // Server authentication info
  3. "servers": [
  4. {
  5. "host": "45.55.229.16",
  6. "username": "root"
  7. }
  8. ],
  9.  
  10. // Install MongoDB in the server, does not destroy local MongoDB on future setup
  11. "setupMongo": true,
  12.  
  13. // WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
  14. "setupNode": true,
  15.  
  16. // WARNING: If nodeVersion omitted will setup 0.10.36 by default. Do not use v, only version number.
  17. "nodeVersion": "0.10.46",
  18.  
  19. // Install PhantomJS in the server
  20. "setupPhantom": true,
  21.  
  22. // Show a progress bar during the upload of the bundle to the server.
  23. // Might cause an error in some rare cases if set to true, for instance in Shippable CI
  24. "enableUploadProgressBar": true,
  25.  
  26. // Application name (No spaces)
  27. "appName": "rockrose",
  28.  
  29. // Location of app (local directory)
  30. "app": "/home/kcmallard/rockrose",
  31.  
  32. // Configure environment
  33. "env": {
  34. "ROOT_URL": "http://www.rockroseyardcare.com"
  35. },
  36.  
  37. // Meteor Up checks if the app comes online just after the deployment
  38. // before mup checks that, it will wait for no. of seconds configured below
  39. "deployCheckWaitTime": 60
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement