"Charge Customer by Direct Debit" for Alexa
Collect money your friends owe you with your voice using the GoCardless API.
TODO
- Add support for OAuth (requires configuration in Alexa, and then fetching the access token from the request)
Preparing your local environment
- Install the application's dependencies with
bundle
- Make a copy of
.env.example
into.env
, and fill in your Alexa application ID (obtained when you create your skill here) and your GoCardless access token (created from your Dashboard here). - Run the application with
heroku local
(which will use the includedProcfile
).
Configuring with Alexa
You can create your Alexa skill on the Amazon site here).
For the intent schema and sample utterances you'll need to provide, see intent_schema.json
and sample_utterances.txt
.
Deploying
This application is ready to deploy to Heroku. Simply create an application, push it up, and set the GOCARDLESS_ACCESS_TOKEN
and ALEXA_APPLICATION_ID
environment variables with heroku config:set
.
Contributing
Pull requests are welcomed.
When making any changes, make sure you write tests, ensure them and the existing tests are passing, and check your code conforms to good Ruby style with Rubocop:
bundle exec rspec spec
bundle exec rubocop
The tests will automatically run in Travis.