Created
January 16, 2019 01:11
-
-
Save ScriptAutomate/1e4e74f6d19211df39cc23dfecdf4760 to your computer and use it in GitHub Desktop.
ASK CLI Basic Usage for Cloning an Existing Alexa Skill Configuration for Version Control and Management via Code
This file contains hidden or 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
# Install | |
sudo npm install -g ask-cli | |
# Initial Configuration of ask-cli | |
# Asks for AWS creds and Amazon Developer creds | |
ask init | |
# Duplicate existing skill | |
mkdir ask-aws-app-name | |
cd ask-aws-app-name | |
ask clone --skill-id amzn1.ask.skill.xxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx | |
git init | |
# Get to work! | |
# ask-cli both deploys an Alexa Skill configuration and | |
# AWS Lambda endpoint configuration |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment