Skip to content

Commit

Permalink
reverse passwor and username order for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor committed Dec 16, 2016
1 parent 28bc5c3 commit 98d111d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 5 additions & 3 deletions recipes/conversation/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ exports.voice = 'en-US_MichaelVoice';
// en-US_MichaelVoice (the default)

// Credentials for Watson Speech to Text service
exports.STTUsername = 'xxx-xxx-xxx' ;

exports.STTPassword = 'xxx-xxx-xxx' ;
exports.STTUsername = 'xxx-xxx-xxx' ;


// Credentials for Watson Conversation service
exports.ConUsername = 'xxx-xxx-xxx' ;
exports.ConPassword = 'xxx-xxx-xxx' ;
exports.ConUsername = 'xxx-xxx-xxx' ;
exports.ConWorkspace = 'xxx-xxx-xxx';

//Credentials for Watson Text to Speech service
exports.TTSUsername = 'xxx-xxx-xxx' ;
exports.TTSPassword = 'xxx-xxx-xxx' ;
exports.TTSUsername = 'xxx-xxx-xxx' ;
3 changes: 2 additions & 1 deletion recipes/sentiment_analysis/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ twittercredentials.access_token_secret = "xxx-xxx-xxx";

// Tone Analyzer Credentials - Update with your Bluemix credentals.
var toneanalyzercredentials = {}
toneanalyzercredentials.username = 'xxx-xxx-xxx' ;

toneanalyzercredentials.password = 'xxx-xxx-xxx' ;
toneanalyzercredentials.username = 'xxx-xxx-xxx' ;
toneanalyzercredentials.version = 'v3' ;

// Export both credentials
Expand Down
3 changes: 2 additions & 1 deletion recipes/speech_to_text/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Please replace the username and password with your bluemix credentials

exports.username = 'xxx-xxx-xxx' ;

exports.password = 'xxx-xxx-xxx' ;
exports.username = 'xxx-xxx-xxx' ;
exports.version = 'v1' ;

0 comments on commit 98d111d

Please sign in to comment.