golangRestfulAPISample
golangRestfulAPISample copied to clipboard
Sample Restful app with chi router (golang)
Golang RestfulAPI Sample
Contents
- SETUP
- GIT PRE HOOK SETUP
SETUP
-
Download and install go, dep ( Go dependency management tool )
-
Install mockery (https://github.com/vektra/mockery)
-
Set GOPATH locally for Go workspace and add in your bash
export GOPATH=/Users/{{name}}/your_folder_path
export PATH=$PATH:$GOPATH/bin
- Form dir structure according to your project repo
cd $GOPATH
mkdir -p src/github.com/kyawmyintthein
- Go to created dir and clone the project
cd src/github.com/kyawmyintthein
git clone [email protected]/kyawmyintthein/golangRestfulAPISample.git
- Go inside the project and create log file
cd golangRestfulAPISample
mkdir -p log/rest_api.log