My resume, hosted at https://rogier.lommers.org/.
Run the site locally:
./run.shThe server starts on http://localhost:8080 and serves files from src/assets.
Build the Linux binary used in the container image:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/resume ./src/*.goBuild the Docker image locally:
docker build -t rogierlommers/resume .Run the Go tests:
go test ./src/...