-
Notifications
You must be signed in to change notification settings - Fork 2
Mysql
D.G. edited this page May 27, 2013
·
4 revisions
mysql implementation is not complete and has been created for benchmark purpose.
The implementation use the node-mysql client.
To setup your database use the script server/lib/mysql_create.sql
The connection information are hard-coded and must be changed according to your configuration.
Default mysql connection:
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : '',
database : 'gitification_db'
});