Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.41 KB

prerequisites.md

File metadata and controls

34 lines (23 loc) · 1.41 KB

Title: Standard Go Environment Readiness Desc: aah framework does not have any specific prerequisites, it's a standard Go language environment. Keywords: environment readiness, prerequisites, go lang environment

Standard Go Environment Readiness

aah does not have any specific prerequisites, it's a standard Go language environment readiness.

Go Installation

Follow the Go official installation guide. There are plenty of contribution around the internet for Go installation. Few pointers from official guide.

Setting up the $GOPATH

  • Understanding GOPATH and it's purpose.
  • Setting GOPATH on UNIX systems and Windows.

Don't forget to add your bin directory on the PATH.

# On *nix operating system
# Set value and then open new terminal session to reflect your change.
echo 'export PATH=$PATH:$GOPATH/bin' >> $HOME/.profile

Git Installation

There are plenty of contribution around the internet for Git installation on various platform.