Hello,
I found a bit of a bug/issue in the start.bat file for running the server. After installing all of the dependencies and double checking everything was installed correctly I absolutely could not for the life of me get the Server to run by running start.bat.
It turns out, the script runs bun install on a seperate line to bun run start.ts which makes the actual run script never get to execute. To fix this, I just ran bun run start.ts seperately.
Just putting this out there for people who aren't advanced users and are just following the guide with no further knowledge.
Hello,
I found a bit of a bug/issue in the start.bat file for running the server. After installing all of the dependencies and double checking everything was installed correctly I absolutely could not for the life of me get the Server to run by running start.bat.
It turns out, the script runs
bun installon a seperate line tobun run start.tswhich makes the actual run script never get to execute. To fix this, I just ranbun run start.tsseperately.Just putting this out there for people who aren't advanced users and are just following the guide with no further knowledge.