0.1.2 • Published 7 years ago

hubot-dynamodb-brain v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

hubot-dynamodb-brain

A hubot brain built on DynamoDB

See src/dynamodb-brain.coffee for full documentation.

Installation

In hubot project repo, run:

npm install hubot-dynamodb-brain --save

Then add hubot-dynamodb-brain to your external-scripts.json:

[
  "hubot-dynamodb-brain"
]

Defaults:

This brain is written with the assumption that the hubot instance is running on an AWS instance, with an instance role that allows access to the 'hubotbrain' table in the us-east-2 region. Environment variables are available to override.

The following CloudFormation YAML will create a suitable table in DynamoDB:

HubotBrainDynamo:
    Type: "AWS::DynamoDB::Table"
    Properties:
      TableName: hubotbrain
      AttributeDefinitions:
        - AttributeName: "botname"
          AttributeType: "S"
      KeySchema:
        - AttributeName: "botname"
          KeyType: "HASH"
      ProvisionedThroughput:
        ReadCapacityUnits: 1
        WriteCapacityUnits: 1

Sample Interaction

user1>> hubot brainscan
hubot>> My brain is doing great!

NPM Module

https://www.npmjs.com/package/hubot-dynamodb-brain

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago