Guest User

Untitled

a guest
Oct 7th, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. user@LinuxLap:~/Meteor/piDemo$ mup setup
  2.  
  3. user@LinuxLap:~/Meteor/piDemo$ sudo mup setup
  4.  
  5. module.exports = {
  6. servers: {
  7. one: {
  8. // TODO: set host address, username, and authentication method
  9. host: '192.168.1.93',
  10. username: 'pi',
  11. // pem: './path/to/pem'
  12. password: 'password'
  13. // or neither for authenticate from ssh-agent
  14. }
  15. },
  16.  
  17. app: {
  18. // TODO: change app name and path
  19. name: 'piDemo',
  20. path: '../',
  21.  
  22. servers: {
  23. one: {},
  24. },
  25.  
  26. buildOptions: {
  27. serverOnly: true,
  28. },
  29.  
  30. env: {
  31. // TODO: Change to your app's url
  32. // If you are using ssl, it needs to start with https://
  33. ROOT_URL: 'http://192.168.1.93:3000',
  34. MONGO_URL: 'mongodb://mongodb/meteor',
  35. MONGO_OPLOG_URL: 'mongodb://mongodb/local',
  36. },
  37.  
  38. docker: {
  39. // change to 'abernix/meteord:base' if your app is using Meteor 1.4 - 1.5
  40. image: 'abernix/meteord:node-8.4.0-base',
  41. },
  42.  
  43. // Show progress bar while uploading bundle to server
  44. // You might need to disable it on CI servers
  45. enableUploadProgressBar: true
  46. },
  47.  
  48. mongo: {
  49. version: '3.4.1',
  50. servers: {
  51. one: {}
  52. }
  53. },
  54.  
  55. // (Optional)
  56. // Use the proxy to setup ssl or to route requests to the correct
  57. // app when there are several apps
  58.  
  59. // proxy: {
  60. // domains: 'mywebsite.com,www.mywebsite.com',
  61.  
  62. // ssl: {
  63. // // Enable Let's Encrypt
  64. // letsEncryptEmail: 'email@domain.com'
  65. // }
  66. // }
  67. };
Add Comment
Please, Sign In to add comment