An open API service indexing awesome lists of open source software.

https://github.com/kevinmichaelchen/golang-watchlist-presentation

Slides on my first Golang service
https://github.com/kevinmichaelchen/golang-watchlist-presentation

golang slides

Last synced: 3 months ago
JSON representation

Slides on my first Golang service

Awesome Lists containing this project

README

        

# golang-watchlist-presentation

## Running the slideshow
Make sure you have Go installed (see below).

If you don't have `present` on your `$PATH`, run
```bash
make install-present
```

Then run
```bash
make
```

## Install Golang
```bash
# install go
brew install go
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
```