Revert "Restructuring for new way of installing libreevent"

This reverts commit 688b0616cc.
This commit is contained in:
2024-08-26 11:21:52 +02:00
parent 688b0616cc
commit a68e42c4bb
223 changed files with 58 additions and 11 deletions

7
src/server/setupDB.js Normal file
View File

@@ -0,0 +1,7 @@
const db = require( './backend/db/db.js' );
( async () => {
await db.initDB();
db.reset();
console.log( 'DONE' );
} )();