fragmenta / fragmenta-cms

A user-friendly CMS written in Go (golang)
http://fragmenta.eu
MIT License
586 stars 70 forks source link

Required Go Version #29

Closed ericmathison closed 7 years ago

ericmathison commented 7 years ago

Thought I'd mention that it might be worth putting the required Go version on the installation page on https://fragmenta.eu/ or elsewhere. It took me a while to figure out why my installation was failing on Go 1.5.3

$ fragmenta new cms go/src/foocms
15:41:40 Fetching from url: github.com/fragmenta/fragmenta-cms
15:43:25 Error calling go get exit status 1

Apparently the fragmenta command line tool was failing to retrieve this repository because of a reference to the "context" package which was added to Go in 1.7. For example:

$ go get github.com/fragmenta/fragmenta-cms
package context: unrecognized import path "context"
kennygrant commented 7 years ago

Good point, I'll add a note. I'm probably going to support just the latest version of Go at this stage I'm afraid, because there have been a few additional features like graceful shutdown and autocert support that I'd like to utilise.

kennygrant commented 7 years ago

Thanks, this is now done on the website, and will be on readme files soon.