Your project has port 8080 hardcoded. For a number of very good reasons, you should consider making that an argument or pulled from the environment. For one, port 8080 is problematic on a Mac if you are running Docker for instance. Also many developer use 8080 as a testing port for web apps.
$ lsof -i :8080
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
com.docke 2412 chris 50u IPv6 0x304f8f807f78b88d 0t0 TCP *:http-alt (LISTEN)`
Anyway, thanks for the cool project!
Your project has port 8080 hardcoded. For a number of very good reasons, you should consider making that an argument or pulled from the environment. For one, port 8080 is problematic on a Mac if you are running Docker for instance. Also many developer use 8080 as a testing port for web apps.
Anyway, thanks for the cool project!