more progress on backend

This commit is contained in:
2023-07-08 13:53:06 +02:00
parent be263fcd6b
commit fc4b18274b
6 changed files with 125 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
const mysql = require( 'promise-mysql' );
class SQLDB {
constructor () {
this.sqlconnection = mysql.createConnection( {
host: 'janishutz.com',
port: '3306',
user: 'janishut_libreeventTest',
password: '^PVgj&xkaQKmMDCgz&2^aCaYxc7nCS#*%7%',
connectionLimit: 200
} );
}
}
module.exports = SQLDB;