Skip to content

Commit

Permalink
feat: link to template project
Browse files Browse the repository at this point in the history
  • Loading branch information
DrPsychick committed Sep 19, 2021
1 parent c340996 commit b99f3e3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ func main() {
res, _ := jsoniter.MarshalIndent(m, "", " ")
log.Printf("Locale %s:\n%s", l, res)
}

}
```

Expand Down Expand Up @@ -128,7 +127,7 @@ func main() {
mux.HandleIntent(alexa.HelpIntent, handleHelp(sb))

// actually, one would call `alexa.Serve(mux)`
// but we want to pass a request and get a response
// but for this demo, we want to pass a request and get a response
s := &alexa.Server{Handler: mux}
ctx := context.Background()
response, err := s.Invoke(ctx, []byte(request))
Expand All @@ -144,11 +143,11 @@ func main() {

## Project template
To give you a head start, check out the template project:
* `go-alexa-lambda-template` : generate skill and deploy it including lambda with cloudformation.
* [go-alexa-lambda-template](https://github.com/DrPsychick/go-alexa-lambda-template) : generate skill and deploy it including lambda with cloudformation.

### Create your own project based on the template
```shell
git clone https://github.com/drpsychick/go-alexa-lambda-template
git clone https://github.com/DrPsychick/go-alexa-lambda-template.git
mv go-alexa-lambda-template alexa-project
cd alexa-project
rm -rf .git
Expand Down

0 comments on commit b99f3e3

Please sign in to comment.