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
- Host: GitHub
- URL: https://github.com/kevinmichaelchen/golang-watchlist-presentation
- Owner: kevinmichaelchen
- Created: 2018-05-15T16:04:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T20:33:30.000Z (almost 7 years ago)
- Last Synced: 2025-02-23T22:43:39.380Z (3 months ago)
- Topics: golang, slides
- Language: Go
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```