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);