From 3ea33a19556e853695ef521dc640d575c7f22405 Mon Sep 17 00:00:00 2001 From: Ritchie Martori Date: Mon, 10 Dec 2012 18:30:39 -0800 Subject: [PATCH] updated urls for deployment --- bin/dpd | 2 +- lib/client/deploy.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/dpd b/bin/dpd index 871cb02..04451dd 100755 --- a/bin/dpd +++ b/bin/dpd @@ -328,7 +328,7 @@ program d.package(tar, function (err) { if(err) return console.error(err); console.log('pushing...'); - d.publish('http://deploy.deploydapp.com:3003', tar, key, function (err) { + d.publish('http://cloud.deployd.com', tar, key, function (err) { if(err) return console.error('failed to push:', err.message || 'could not push app to ' + DPDAPP_URL); console.log('deployd app to http://' + d.subdomain + '.deploydapp.com!'); }); diff --git a/lib/client/deploy.js b/lib/client/deploy.js index b4aaef4..a8eb7e7 100644 --- a/lib/client/deploy.js +++ b/lib/client/deploy.js @@ -15,8 +15,8 @@ var path = require('path') function Deployment(appPath, user, subdomain) { var remote = this.remote = 'deploydapp.com'; - this.api = "http://api.deploydapp.com:3000"; - this.deployUrl = "http://deploy.deploydapp.com:3003"; + this.api = "http://api.deployd.com"; + this.deployUrl = "http://cloud.deployd.com"; this.path = path.resolve(appPath);