Skip to content

Commit

Permalink
vendor deps and add build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tedwardd committed Sep 14, 2017
1 parent 1dd7b1b commit 6a815d5
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
webby
vendor/
21 changes: 21 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions Gopkg.toml
@@ -0,0 +1,30 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
branch = "master"
name = "github.com/clarkf/libirc"

[[constraint]]
branch = "master"
name = "golang.org/x/net"
13 changes: 13 additions & 0 deletions README.md
@@ -1,3 +1,16 @@
# Webby Bot
Webby is an IRC bot written in Go. The initial goal is to provide helpers for
parsing URLs to provide the URL title and a shortend URL.

# Building

Building requires go dep:
`$ go get -u github.com/golang/dep/cmd/dep`


```
$ git clone git@github.com:k4k/webby-bot.git
$ cd webby-bot
$ dep ensure
$ go build
```

0 comments on commit 6a815d5

Please sign in to comment.