alexa-samples / skill-sample-nodejs-audio-player

An Alexa Skill Sample showing how to play long form audio in 3P-skills
Other
470 stars 319 forks source link

Two different Skills #66

Closed jeremywj closed 6 years ago

jeremywj commented 6 years ago

I am trying to create a second skill for another stream I run independant of the first. I believe the second skill is overwriting the lambda function of the first one. How can I have the second create a new lambda in AWS?

sebsto commented 6 years ago

If you're pulling this repo twice, two skills will be created with two lambda functions. If you copied the files from the first skill, the behaviour you're observing is expected. The lambda function name is located in ..ask/config directory of your project, be sure to change the lambda function name to another name.

"apis": {
            "custom": {
              "endpoint": {
                "uri": "ask-custom-myradio-default"
              }
            }
          }
sebsto commented 6 years ago

Closing because lack of activity since several months. Feel free to reopen if you still have a problem with this.