From 4d192bd5ecf6fa7077cccc5d3bc80a08213b8f43 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Sun, 9 Feb 2025 20:01:17 +0100 Subject: [PATCH] Added mysql code but commented out --- README.md | 2 +- src/application/database.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 74817fb..d7d1afe 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This is the server for the Noxious game. ## Projects requirements - NodeJS 20.x or higher -- MySQL 8.x or higher +- MariaDB 11.x or higher - Redis 7.x or higher ## Installation diff --git a/src/application/database.ts b/src/application/database.ts index 676f23a..cdd65a7 100644 --- a/src/application/database.ts +++ b/src/application/database.ts @@ -1,3 +1,4 @@ +// import { MikroORM } from '@mikro-orm/mysql' import { MikroORM } from '@mikro-orm/mariadb' import Logger, { LoggerType } from '#application/logger'