-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated .env.example file to elaborate of the proper usage for IAM AP…
…I keys and credentials and added URL parameters
- Loading branch information
Showing
1 changed file
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
SPEECH_TO_TEXT_IAM_APIKEY="" | ||
SPEECH_TO_TEXT_USERNAME="" | ||
SPEECH_TO_TEXT_PASSWORD="" | ||
TEXT_TO_SPEECH_IAM_APIKEY="" | ||
TEXT_TO_SPEECH_USERNAME="" | ||
TEXT_TO_SPEECH_PASSWORD="" | ||
# Replace this if you are using a region specific service | ||
SPEECH_TO_TEXT_URL=https://stream.watsonplatform.net/speech-to-text/api | ||
|
||
# If your using IAM API keys use this and do not input credentials: | ||
SPEECH_TO_TEXT_IAM_APIKEY=<Your API key> | ||
|
||
# If your Speech to Text credentials contain username and password use the following: | ||
SPEECH_TO_TEXT_USERNAME= | ||
SPEECH_TO_TEXT_PASSWORD= | ||
|
||
# Replace this if you are using a region specific service | ||
TEXT_TO_SPEECH_URL=https://stream.watsonplatform.net/text-to-speech/api | ||
|
||
# If your using IAM API keys use this and do not input credentials: | ||
TEXT_TO_SPEECH_IAM_APIKEY=<Your API key> | ||
|
||
# If your Text to Speech credentials contain username and password use the following: | ||
TEXT_TO_SPEECH_USERNAME= | ||
TEXT_TO_SPEECH_PASSWORD= | ||
|