7 lines
481 B
Markdown
7 lines
481 B
Markdown
|
# Guide to run Gin under App Engine LOCAL Development Server
|
||
|
|
||
|
1. Download, install and setup Go in your computer. (That includes setting your `$GOPATH`.)
|
||
|
2. Download SDK for your platform from here: `https://developers.google.com/appengine/downloads?hl=es#Google_App_Engine_SDK_for_Go`
|
||
|
3. Download Gin source code using: `$ go get github.com/gin-gonic/gin`
|
||
|
4. Navigate to examples folder: `$ cd $GOPATH/src/github.com/gin-gonic/gin/examples/`
|
||
|
5. Run it: `$ goapp serve app-engine/`
|