updated urls for deployment

This commit is contained in:
Ritchie Martori
2012-12-10 18:30:39 -08:00
parent f7914a5a92
commit 3ea33a1955
2 changed files with 3 additions and 3 deletions

View File

@@ -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!');
});

View File

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