Accenture / alexia

A Framework for creating Amazon Echo (Alexa) skills using Node.js
MIT License
164 stars 42 forks source link

Add instructions on Heroku and Lambda deployment #11

Closed Glogo closed 8 years ago

Glogo commented 8 years ago

Add instructions to README documenting deployment to Heroku and Lambda

Notes:

Heroku

AWS Lambda

/* Create or require app here ... */

exports.handler = (event, context, callback) => {
    app.handle(event, data => {
        callback(null, data);
    });
};
chrischang commented 8 years ago

How detailed instructions do you want for Heroku? I have just built an app with Alexia and have deployed it to Heroku successfully, so I am wondering maybe if I could help with this task.

Glogo commented 8 years ago

Just some basic steps required for the deployment (mentioned in the lists in issue description). I already started writing something for both Heroku and Lambda.

I will create pull request in a minute so you can take a look at it and update it if necessary