Hello,
I want to create my own ASK CLI Template with CodeCommit.
So i copied the Hello World Template from
https://github.com/alexa/skill-sample-nodejs-hello-world.git
changed it and pushed it to my codecommit repository.
The Problem is:
My Codecommit URL doesn't end with: .GIT
But the ASK Cli throws an error when i try the following:
ask new --url https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/XXXX-Alexa-Template
The ASK Cli says: [Error]: Invalid url. Provide provide a valid git/json url.
if i would try:
ask new --url https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/XXXX-Alexa-Template.GIT
Then the ASK CLI doesn't bring the error at this point, but the clone to this url failed afterwords. (because the correct url doesn't end with .GIT)
Question: Is there any trick to use CodeCommit together with ASK CLI?
Kind Regards
Stefan