Mysql - Gitification/gitification GitHub Wiki

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

Connection information

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'
});