diff --git a/mysql.js b/mysql.js new file mode 100644 index 0000000..2094904 --- /dev/null +++ b/mysql.js @@ -0,0 +1,18 @@ +const mysql = require('mysql'); +const config = require('./config'); + + +var con = mysql.createConnection({ + host: "test-db.verdnatura.es", + database: "vn", + user: config.userDev, + password: config.passwordDev +}); + +con.connect(function(err) { + if (err) { + console.error('Error connecting: ' + err.stack); + return; + } + console.log("Connected!"); +}); \ No newline at end of file