Installation Requirements
This page covers installing the basic installation requirements for letsGo.
Basic Installation Requirements
letsGo requires just installing Go and MongoDB
This is all that is needed before letsGo can get up and running on your development environment.
Install Go
Install guide is available at the official Golang site.
Install Mongo
Install guide is available at the official Mongo site.
GO module
letsgo uses go module to manage dependencies. So You need to enable GO111MODULE
.
export GO111MODULE=on
*** If you use atom for development, to work with go-plus properly you need to run go mod vendor
Please make sure GOBIN is set for letsgo-cli to work properly
NEXT STEPS
👏 Congrats, you are all set! Now that Go is installed you can proceed to the Quick start.