Advertisement
Guest User

Untitled

a guest
Mar 21st, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = {
  2.   servers: {
  3.     one: {
  4.       host: '***.****.****.**',
  5.       username: 'root',
  6.       password: 'mySecretPass'
  7.    }
  8.   },
  9.  
  10.   meteor: {
  11.     // Application name (No spaces)
  12.     appName: "App",
  13.     name: 'App',
  14.     path: '../',
  15.     servers: {
  16.       one: {}
  17.     },
  18.     setupMongo: true,
  19.     setupNode: true,
  20.     nodeVersion: "4.7.2",
  21.     setupPhantom: true,
  22.     enableUploadProgressBar: true,
  23.     buildOptions: {
  24.       serverOnly: true,
  25.     },
  26.     ssl: {
  27.       crt: './ssl/gd_bundle-g2-g1.crt', // this is a bundle of certificates
  28.       key: './ssl/App.key', // this is the private key of the certificate
  29.       port: 443 // 443 is the default value and it's the standard HTTPS port
  30.     },
  31.     env: {
  32.       PORT:'80',
  33.       ROOT_URL: 'http://App.me/',
  34.       MONGO_URL: 'mongodb://localhost/meteor',
  35. //      MONGO_URL: 'mongodb://dbuser:dbpassword@ds141428.mlab.com:41428/heroku_b86gnnbv',
  36.     },
  37.     dockerImage: 'abernix/meteord:base',
  38.     deployCheckWaitTime: 60
  39.   },
  40.   mongo: {
  41.     oplog: true,
  42.     port: 27017,
  43.     servers: {
  44.       one: {},
  45.     },
  46.   },
  47. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement