mup.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. // Server authentication info
  3. "servers": [
  4. {
  5. "host": "dev.audean.com",
  6. "username": "ubuntu",
  7. // "password": "password"
  8. // or pem file (ssh based authentication)
  9. "pem": "~/.ssh/id_rsa-ec2"
  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": "meteor",
  25. // Location of app (local directory)
  26. "app": "/home/marand/src/Dropbox/src/js/meteor/discover/microscope",
  27. // Configure environment
  28. "env": {
  29. "ROOT_URL": "http://dev.audean.com",
  30. "MAIL_URL": "fgmarand+mup@gmail.com"
  31. },
  32. // Meteor Up checks if the app comes online just after the deployment
  33. // before mup checks that, it will wait for no. of seconds configured below
  34. "deployCheckWaitTime": 15
  35. }