munificent / hauberk

A web-based roguelike written in Dart.
http://munificent.github.io/hauberk/
Other
2k stars 200 forks source link

Cannot use port 8080 -- Aleady in use. #58

Closed Casteele72 closed 3 years ago

Casteele72 commented 3 years ago

On my system,port 8080 is already in use by my LAN proxy server, and I cannot change that without breaking my LAN.

Since I cannot find where in Hauberk it sets port 8080, I am guessing that Dart needs to be modified, not Hauberk. However, you should include information in the README about such a potential conflict, and how to resolve it.

Casteele72 commented 3 years ago

Note: I figured out how to make it work...

In the Makefile, modify the line: pub run build_runner serve to something like: pub run build_runner serve web:8085 (Change the 8085 to any desired port.)