I'm currently working on developing a Discord bot along with a website dashboard to complement it. Everything is running smoothly, except for the backend Nestjs API that I am in the process of creating. I decided to use Sequelize as the database for my bot and thought it would be best to stick with the same ORM for my API. I really don't want to switch to any other ORM at this point.
If you're interested in checking out all the code for my API, feel free to visit: https://github.com/Sideways-Sky/api
Unfortunately, I've run into an issue where my API isn't syncing properly with my MySQL database. There are no errors being thrown, but the functionality is just not there. I suspect that the problem may have stemmed from my attempt to set up a session store, where I might have made a mistake (especially since I'm relatively new to Nestjs and unsure about the correct way to handle session storage). I believe the root of the issue might lie within main.ts or app.module.ts. Despite spending an entire day troubleshooting, I haven't been able to find a solution through online resources.
I would greatly appreciate any feedback or suggestions. Thank you in advance!