Skip to content

robu3/hubot-mssql-brain

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A SQL Server-backed Hubot Brain

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •