table and entries

This commit is contained in:
Janis
2022-04-30 20:57:06 +02:00
parent e950091f2d
commit b2c8e799bd
16 changed files with 807 additions and 11 deletions

11
backend/config.js Normal file
View File

@@ -0,0 +1,11 @@
const config = {
db: {
host: "127.0.0.1",
user: "root",
password: "", // In production: "InfraTag!" SORRY FOR CLEAR TEXT PASSWORD
database: "rme-time-tracking",
},
port: 8080, // Port for the server
};
module.exports = { config };