✅ dotnet watch not working
im trying to run a mod that works using the api for a minecraft server, though when I try to run the main API using the dotnet watch commad in my terminal I get this
12 Replies
Read the errors. The project you are compiling seems to link to something called
websocket-sharp
which should be a local dependency but isntyeah I did, but I can't figure out what websocket-sharp is
I tried cloning it from the mod github like I did with the other dependencies but it doesnt exist
well, looking at that repo, it seems you shouldnt be running it by itself
the readme for the
SkyBackendForFrontend
repo states...
This project should be deployed within a container.and if we then look at the dockerfile, it seems its supposed to be run via the
hypixel
repo
RUN git clone --depth=1 https://github.com/Coflnet/HypixelSkyblock.git dev
I have all the required parts in a docker file yeah
well, im sorry to say this isnt a problem with dotnet
you are missing a local dependency. perhaps you could try replacing it with a package dependency for the same project, if one exists
alright I'll try that, thank you!
a different question tho, when I do dotnet watch, I get this error
yeah, redis cant connect at the given connectionstring
redis:6379/Interactive
seems to be the endpoint its trying to reach. looks like a docker compose endpointWhat does that mean? Do I need to change something in docker itself?
you shouldnt be starting this via
dotnet watch
you should be starting it via docker compose
this server, whatever it is, has several dependencies. including a distributed cache system called redis
you didnt start a redis server, or if you did you didnt change the connectionstring for itah ok, uh what command do I use to start said file?
the folder has a dockerfile inside so do I just type docker-compose in my terminal?
Im sure google can tell you all you need to know about docker compose
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.