PORT=1234 go run main.go
URL_PREFIX="/yo" PORT=1234 go run main.go
PORT=1234 curl "localhost:1234/"
PORT=1234 curl "localhost:1234/hi"
PORT=1234 curl "localhost:1234/hello-world"
PORT=1234 curl "localhost:1234/yo"
PORT=1234 curl "localhost:1234/yo/"
PORT=1234 curl "localhost:1234/yo/hi"
PORT=1234 curl "localhost:1234/yo/hello-world"
docker build -f ./Dockerfile -t hello-world .
docker tag hello-world dolittle/hello-world:latest
docker push dolittle/hello-world:latest
- localhost or 0.0.0.0
- port to listen to
- the prefix used, to "work on a sub route"