Skip to content

Instantly share code, notes, and snippets.

@digilord
Created April 8, 2015 19:01
Show Gist options
  • Save digilord/a9b0ff48fa1bc1615c1c to your computer and use it in GitHub Desktop.
Save digilord/a9b0ff48fa1bc1615c1c to your computer and use it in GitHub Desktop.
{
// Server authentication info
"servers": [
{
"host": "127.0.0.1", // No not this address. Address redacted to protect the innocent.
"username": "digilord",
// "password": "password"
// or pem file (ssh based authentication)
"pem": "~/.ssh/id_dsa"
}
],
// Install MongoDB in the server, does not destroy local MongoDB on future setup
"setupMongo": true,
// WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
"setupNode": true,
// WARNING: If nodeVersion omitted will setup 0.10.31 by default. Do not use v, only version number.
"nodeVersion": "0.10.36",
// Install PhantomJS in the server
"setupPhantom": false,
// Application name (No spaces)
"appName": "sarc",
// Location of app (local directory)
"app": "~/projects/sarc/app",
// Configure environment
"env": {
"PORT": 4000,
"ROOT_URL": "http://sarc.digilord.net",
"MONGO_URL": "mongodb://localhost:27017/sarc"
},
// Meteor Up checks if the app comes online just after the deployment
// before mup checks that, it will wait for no. of seconds configured below
"deployCheckWaitTime": 15
}
{
"aws": {
"accessKeyId": "accessKeyId",
"secretAccessKey": "accessSecret",
"bucket": "myApp"
},
"uploader": {
"directory": "/Users/digilord/temp/uploads"
},
"public": {
"backgroundImageOptions": {
"FlickrAPIKey": "1234567890",
"tags": "Amazing Mountains antenna towers",
"interval": 60000
},
"pluggableAdmin": {
"view": "ionicAdminTemplate"
},
"barHeaderColor": "bar-sarc",
"favicon": "/images/favicon.png"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment