Skip to content

Instantly share code, notes, and snippets.

@jjoos
Last active December 17, 2015 14:49
Show Gist options
  • Save jjoos/5627713 to your computer and use it in GitHub Desktop.
Save jjoos/5627713 to your computer and use it in GitHub Desktop.
Start discovering programming in Go for the web.

Install and start your first go app:

brew update
brew install go
mkdir -p $HOME/go
export GOPATH=$HOME/go
go get "github.com/jasondelponte/golib/config"
cd $HOME
gem install gokart
rbenv rehash
gokart gotest
cd gotest
echo "
gem 'json', '~> 1.7.7'" >> Gemfile
bundle
rake app:startdebug

Open the debug website:

open http://localhost:8080

To see what rake tasks are available:

rake --tasks

Start here for a tutorial: http://golang.org/doc/articles/wiki/

Other interesting sites:

http://golang.org/doc/

https://github.com/jasondelponte/golib/

https://jasondelponte.com/goapps/gokart/presentation/show

https://github.com/jasondelponte/gokart

https://github.com/romanoff/gow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment