This repository has been archived on 2025-04-15. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
269 B
JavaScript

var mysql = require('mysql');
// This information is only used for testing - change to production before deploying
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "root"
// database: "unesco"
});
module.exports = con;