initial commit, database config working, pug template basic config, generated site working
This commit is contained in:
11
database/db.js
Normal file
11
database/db.js
Normal file
@ -0,0 +1,11 @@
|
||||
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;
|
Reference in New Issue
Block a user