added node backend

This commit is contained in:
QkoSad
2025-07-14 10:39:01 +03:00
parent 98e689bfc5
commit ec40145c69
26 changed files with 1495 additions and 1167 deletions
+10
View File
@@ -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;