mup.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. // Server authentication info
  3. "servers": [
  4. {
  5. "host": "107.170.230.56",
  6. "username": "root",
  7. "password": "FoxesAndOtherCheeseburgersAreAwesome!"
  8. // or pem file (ssh based authentication)
  9. //"pem": "~/.ssh/id_rsa"
  10. }
  11. ],
  12. // Install MongoDB in the server, does not destroy local MongoDB on future setup
  13. "setupMongo": true,
  14. // WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
  15. "setupNode": true,
  16. // WARNING: If nodeVersion omitted will setup 0.10.36 by default. Do not use v, only version number.
  17. "nodeVersion": "0.10.36",
  18. // Install PhantomJS in the server
  19. "setupPhantom": true,
  20. // Show a progress bar during the upload of the bundle to the server.
  21. // Might cause an error in some rare cases if set to true, for instance in Shippable CI
  22. "enableUploadProgressBar": true,
  23. // Application name (No spaces)
  24. "appName": "musare",
  25. // Location of app (local directory)
  26. "app": ".",
  27. // Configure environment
  28. "env": {
  29. "ROOT_URL": "http://musare.com"
  30. },
  31. // Meteor Up checks if the app comes online just after the deployment
  32. // before mup checks that, it will wait for no. of seconds configured below
  33. "deployCheckWaitTime": 60
  34. }