1.0.2 • Published 9 years ago

hubot-mssql-brain v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

hubot-mssql-brain

Stores Hubot's brain in SQL Server.

Setup

You will need to set a new environment variable, HUBOT_MSSQL_CONNECTION, to a connection string of the following form: server|db_name|username|password

If you need to specify an instance name you can optionally add it to the end, i.e., server|db_name|username|password|instance_name

Then run the following SQL to setup the table for storage:

create table hubot_brain (
 id int identity primary key,
 storage nvarchar(max)
)

insert into hubot_brain
values(null)

Shoutouts

Thanks to danthompson and the pg-brain script for inspiration: https://github.com/github/hubot-scripts/blob/master/src/scripts/pg-brain.coffee

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago