added node backend
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import mysql from "mysql2/promise";
|
||||
|
||||
const connection = await mysql.createConnection({
|
||||
host: "localhost",
|
||||
user: "monty",
|
||||
password: "some_pass",
|
||||
database: "timelognode",
|
||||
});
|
||||
|
||||
export default connection;
|
||||
Reference in New Issue
Block a user