Skip to content

Commit

Permalink
[minor] clarified jitsu database types
Browse files Browse the repository at this point in the history
  • Loading branch information
coderarity committed Nov 10, 2012
1 parent 50baabb commit e141f52
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/jitsu/commands/databases.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ databases.available = ['couch', 'redis', 'mongo', 'mongohq', 'redistogo'];
// .. and a couch db will be created.
//
databases.aliases = {
couch : ['c', 'couchdb'],
redis : ['r'],
mongo : ['m', 'mongodb'],
couch : ['c', 'couchdb', 'iriscouch'],
redis : ['r', 'irisredis'],
mongo : ['m', 'mongodb', 'mongolab'],
mongohq: [],
redistogo: []
};
Expand Down Expand Up @@ -137,7 +137,8 @@ databases.create = function (requestedDatabaseType, requestedDatabaseName, callb
return cb();
}

jitsu.log.warn('Valid database types are: ' + 'couch'.magenta + ', ' + 'redis'.magenta +', or ' + 'mongo'.magenta);
jitsu.log.warn('Valid database types are: ' + 'couch'.magenta + ' (iriscouch), ' + 'redis'.magenta + ' (irisredis), '
+ 'mongo'.magenta + ' (mongolab), ' + 'mongohq'.magenta + ', or' + 'redistogo'.magenta);
jitsu.prompt.get('database type', function(e, res) {
database.type = res['database type'] || database.type;
cb();
Expand Down

0 comments on commit e141f52

Please sign in to comment.