Advertisement
Guest User

Untitled

a guest
Oct 16th, 2017
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.     module.exports = {
  3.       servers: {
  4.         one: {
  5.           // TODO: set host address, username, and authentication method
  6.           host: 'myHostIp',
  7.           username: 'root',
  8.           // pem: './path/to/pem'
  9.           password: 'password'
  10.           // or neither for authenticate from ssh-agent
  11.         }
  12.       },
  13.  
  14.       app: {
  15.         // TODO: change app name and path
  16.         name: 'realmotion',
  17.         path: '../',
  18.  
  19.         servers: {
  20.           one: {}
  21.         },
  22.  
  23.         buildOptions: {
  24.           serverOnly: true,
  25.         },
  26.  
  27.         env: {
  28.           // TODO: Change to your app's url
  29.           // If you are using ssl, it needs to start with https://
  30.           PORT:'8080',
  31.           ROOT_URL: 'https://realmotion.io',
  32.           MONGO_URL: 'mongodb://localhost/meteor'
  33.         },
  34.  
  35.         // ssl: { // (optional)
  36.         //   // Enables let's encrypt (optional)
  37.         //   autogenerate: {
  38.         //     email: 'email.address@domain.com',
  39.         //     // comma separated list of domains
  40.         //     domains: 'website.com,www.website.com'
  41.         //   }
  42.         // },
  43.  
  44.         docker: {
  45.           // change to 'kadirahq/meteord' if your app is using Meteor 1.3 or older
  46.           image: 'kadirahq/meteord'
  47.         },
  48.  
  49.         // Show progress bar while uploading bundle to server
  50.         // You might need to disable it on CI servers
  51.         enableUploadProgressBar: true,
  52.         deployCheckWaitTime: 80
  53.       },
  54.  
  55.       mongo: {
  56.         version: '3.2.12',
  57.         port: 27017,
  58.         servers: {
  59.           one: {}
  60.         }
  61.       }
  62.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement