CMS in Go
go test
GOOS=linux GOARCH=amd64 go build
docker build -t go-cms .
Run by providing the database connection and path to the documentation
go-cms \
-conn="<username>:<password>@tcp(<hostname>:3306)/<schema>" \
-port=7335 \
-path=<path to documentation>
or with docker
docker run --rm -p 7335:7335 go-cms
Request the page by supplying the page id in the uri
curl localhost:7335/index