Website - Docs - Marketplace - Template
This Jovo v4 sample app showcases the following features:
- Platforms: A single code base that works on both Alexa and Google Assistant.
- Staging: Uses a
devstage for local debugging and aprodstage that is deployed to AWS Lambda. Both stages use different Alexa Skill and Google Action projects. - Deployment: Uses the Serverless CLI for AWS deployment.
Learn how to get this project up and running in the getting started section. The stages and deployment section will help you deploy the project to the platform developer consoles and AWS.
Watch the video here:
https://www.youtube.com/watch?v=D4kYbr7Mm2s
Clone this repository and install all dependencies:
# Clone project
$ git clone https://github.com/jovotech/jovo-sample-alexa-googleassistant-lambda.git
# Go to directory
$ cd jovo-sample-alexa-googleassistant-lambda
# Install dependencies
$ npm installThe easiest way test the project code is to install the Jovo CLI and use the run command. Learn more in Jovo getting started docs.
# Install Jovo CLI globally
$ npm install -g @jovotech/cli
# Run local development server
$ jovo runThis will compile the code, run the local development server, and print out your individual Jovo Webhook URL that you can then use to access the Jovo Debugger.
The Debugger allows you to test your local code without having to create Alexa Skill and Google Action projects in the respective developer consoles. We'll do this in the stages and deployment section below.
This project uses the Jovo staging feature that enables you to use multiple versions of your app, for example for local development and for a live version.
There are two stages available:
dev: This stage is used for local development- The
app.dev.tsapp config uses a file-based database integration called FileDb and the Jovo Debugger for browser-based testing. - It uses the
server.express.tsfile as a local development server using Express.
- The
prod: This stage is used for the live version deployed to AWS- The
app.prod.tsapp config uses a database integration for AWS DynamoDB. - It uses the
server.lambda.tsfor running the code on AWS Lambda. - The
jovo.project.jsproject config
- The
The jovo.project.js project config uses a dev and a prod stage for stage specific Alexa Skill and Google Action projects as well.
To get started, copy the .env.example file and rename it to .env.
Learn more below:
This guide will show you how to create two different Alexa Skill projects in the Alexa Developer Console:
- One for the
devstage calledJovo Sample DEVusing the invocation namemy dev test app - One for the
prodstage calledJovo Sample PRODusing the invocation namemy test app
It's also possible to stop after creating the dev Skill. More on that below.
As explained in the Jovo Alexa installation docs, first install the ASK CLI and configure it by linking it to your Amazon developer account:
# Install ASK CLI globally
$ npm install -g ask-cli
# Configure ASK profile
$ ask configureIf you want to deploy to your default ASK profile, you don't need to change anything. If you want to use a different profile, modify the following in your .env file (after copying the .env.example file and renaming it to .env):
ALEXA_ASK_PROFILE_DEV=default
The Alexa Developer Console project docs show you in detail how to then deploy the project. Use the following two commands:
# Build platform specific files (default stage: dev)
$ jovo build:platform alexa
# Deploy these files to the Alexa Developer Console
$ jovo deploy:platform alexaSince the .env does include an empty string for the Alexa Skill ID (for both dev and prod), a new Skill project will be created during the deployment.
ALEXA_SKILL_ID_DEV=
ALEXA_SKILL_ID_PROD=
After running the command, the CLI will print out the Skill ID of the newly created project. To keep the deployment linked to this project, copy the ID and add it to the .env file.
If you open the Alexa Developer Console, you should now see your project named Jovo Sample DEV in the list of Alexa Skills. The endpoint should be your Jovo Webhook URL. You can then open the testing tab and test the app using the invocation "my dev test app" (the invocation name is a stage specific model override that is added in the jovo.project.js file). Make sure that your local development server is running with jovo run before you start testing.
The jovo.project.js file uses dev as defaultStage, so if you want to deploy to the prod stage, you either need to update that property or add the --stage flag to the commands:
# Build platform specific files (stage: prod)
$ jovo build:platform alexa --stage prod
# Deploy these files to the Alexa Developer Console
$ jovo deploy:platform alexa --stage prodIf you want to deploy to your default ASK profile, you don't need to change anything. If you want to use a different profile, modify the following in your .env file (after copying the .env.example file and renaming it to .env):
ALEXA_ASK_PROFILE_PROD=default
After successful deployment, you should now see your project named Jovo Sample PROD in the list of Alexa Skills in the Alexa Developer Console.
While the dev Alexa Skill uses the Jovo Webhook as endpoint, the code for the prod Skill will be hosted on AWS. You need to deploy it and update the following property in your .env file:
LAMBDA_ARN_PROD=arn:aws:lambda:us-east-1:111111111111:function:jovo-sample-prod-handler
It is necessary that you redeploy your Alexa Skill project again after updating the value above.
This guide will show you how to create two different Google Action projects in the Actions on Google Console:
- One for the
devstage calledJovo Sample DEVusing the invocation namemy dev test app - One for the
prodstage calledJovo Sample PRODusing the invocation namemy test app
It's also possible to stop after creating the dev Action. More on that below.
As explained in the Jovo Google Assistant installation docs, you need to install the gactions CLI, ideally by following the official documentation by Google.
The Actions on Google Console project docs show you in detail how to then deploy the project. Since the Google Actions API doesn't allow for programmatic project creation, you need to access the console and create a project manually. Learn more in the official Google Assistant docs.
Then copy the newly created project ID and add it to your .env file (after copying the .env.example file and renaming it to .env):
GOOGLE_ACTION_PROJECT_ID_DEV=
For now, you only need to fill in the field for the dev stage.
You can then use the following two commands:
# Build platform specific files (default stage: dev)
$ jovo build:platform googleAssistant
# Deploy these files to the Actions on Google Console
$ jovo deploy:platform googleAssistantAfter that, you can log see the changes in the Actions on Google console.
The jovo.project.js file uses dev as defaultStage, so if you want to deploy to the prod stage, you either need to update that property or add the --stage flag to the commands:
# Build platform specific files (stage: prod)
$ jovo build:platform googleAssistant --stage prod
# Deploy these files to the Actions on Google Console
$ jovo deploy:platform googleAssistant --stage prodFor this to work, you need to create a project in the Actions on Google console as explained in the previous section, copy the newly created project ID and add it to your .env file:
GOOGLE_ACTION_PROJECT_ID_PROD=
While the dev Google Action uses the Jovo Webhook as endpoint, the code for the prod Action will be hosted on AWS. You need to deploy it and update the following property in your .env file:
LAMBDA_ARN_URL=https://abcdefghijklmnopqrstuvwxyz.lambda-url.us-east-1.on.aws/
It is necessary that you redeploy your Google Action project again after updating the value above.
This guide will show you how to deploy the prod stage of your Jovo app to AWS Lambda using the Jovo Serverless CLI integration. The Serverless CLI needs to be installed globally like this:
$ npm install -g serverlessLearn more about how to create an AWS account and making the security credentials available to the CLI in the official Serverless docs.
You can make the keys accessible like this:
export AWS_ACCESS_KEY_ID=<your-key-here>
export AWS_SECRET_ACCESS_KEY=<your-secret-key-here>After doing so, you can create a serverless.yaml file and then bundle and deploy the code using the following commands:
# Create serverless.yaml (stage: prod)
$ jovo build:serverless --stage prod
# Bundle and deploy code to AWS (stage: prod)
$ jovo deploy:code serverless --stage prodIf you run into any problems with the deployment, you can also use the following commands instead of deploy:code serverless:
# Bundle the prod stage source code
$ npm run bundle:prod
# Use the Serverless CLI for deployment
$ serverless deployLearn more about the npm scripts in the package.json file.
After successful deployment, you should be able to see the created function in the AWS Lambda console. If you did not update the service name in jovo.project.js, it should be called jovo-sample-prod-handler.
If the deployment doesn't work, it's possibly because the value for the Alexa Skill ID (which is needed for the verification happening in the Alexa Skills Kit Trigger) is undefined in your .env file. To get started, you could copy the existing dev Alexa SKill ID into the field and swap it out at a later point after creating a prod Skill project.
ALEXA_SKILL_ID_PROD=
To get information about your function, you can either open it in the console or run the serverless info command. Copy the ARN and add it to your .env file. This can then be used to rebuild and deploy your prod Alexa Skill with the Lambda function as endpoint.
LAMBDA_ARN_PROD=arn:aws:lambda:us-east-1:111111111111:function:jovo-sample-prod-handler
The function URL (that was added using the url: true parameter in the Serverless config, learn more in the official Serverless docs) is a newly introduced feature by AWS that makes Lambda functions accessible to outside services without the need to add an API Gateway endpoint.
Copy the function URL and add it to your .env file. This can then be used to rebuild and deploy your prod Google Action with the Lambda function as endpoint.
LAMBDA_URL_PROD=https://abcdefghijklmnopqrstuvwxyz.lambda-url.us-east-1.on.aws/
The jovo.project.js also includes the permissions to create and update a DynamoDb table. By default, the table will be called jovo-sample-db. You can also update it in the project config under the prod stage:
new ServerlessCli({
provider: {
// ...
environment: {
DYNAMODB_TABLE_NAME: 'jovo-sample-db',
},
},
// ...
}),On the first request, the Lambda will fail because of the DynamoDb table creation. On the next request, the table should be created and everything should work correctly.
Learn more about the Jovo app project structure and key concepts in the Jovo getting started docs.
