Skip to content

Commit 5d5cca3

Browse files
committed
honk.
0 parents  commit 5d5cca3

File tree

12 files changed

+879
-0
lines changed

12 files changed

+879
-0
lines changed

.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export TWITTER_CONSUMER_KEY=xxx
2+
export TWITTER_CONSUMER_SECRET=xxx
3+
export TWITTER_ACCESS_TOKEN=xxx
4+
export TWITTER_ACCESS_SECRET=xxx

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
hack/real.env
2+
vendor/

.golang-ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# golangci-lint configuration file.
2+
# Read more at: https://github.com/golangci/golangci-lint#config-file
3+
4+
run:
5+
deadline: 30m
6+
issues-exit-code: 1
7+
tests: true
8+
linters:
9+
disable-all: true
10+
enable:
11+
- deadcode
12+
- gocyclo
13+
- govet
14+
- ineffassign
15+
- misspell
16+
- structcheck
17+
- unused

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.PHONY: check run
2+
3+
check:
4+
golangci-lint run -c .golang-ci.yml ./...
5+
6+
run:
7+
$(source .env)
8+
go run main.go

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Honk-Notify
2+
When the world is full of data sources, and you want to trigger a honk.
3+
4+
## Credit
5+
Honk sound source from https://www.youtube.com/watch?v=NLigbqtC_4w
6+
7+
Inspired by https://goose.game/ and all our friends from the Open Source Community.

go.mod

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
module github.com/honk-ci/honk-notify
2+
3+
go 1.12
4+
5+
require (
6+
cloud.google.com/go v0.47.0 // indirect
7+
cloud.google.com/go/bigquery v1.2.0 // indirect
8+
cloud.google.com/go/storage v1.1.2 // indirect
9+
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
10+
github.com/coreos/bbolt v1.3.3 // indirect
11+
github.com/coreos/etcd v3.3.17+incompatible // indirect
12+
github.com/coreos/go-semver v0.3.0 // indirect
13+
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
14+
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f
15+
github.com/creack/pty v1.1.9 // indirect
16+
github.com/dghubble/go-twitter v0.0.0-20190719072343-39e5462e111f
17+
github.com/dghubble/oauth1 v0.6.0
18+
github.com/faiface/beep v1.0.2
19+
github.com/go-toolsmith/astinfo v1.0.0 // indirect
20+
github.com/gogo/protobuf v1.3.1 // indirect
21+
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect
22+
github.com/golangci/gocyclo v0.0.0-20180528144436-0a533e8fa43d // indirect
23+
github.com/golangci/golangci-lint v1.21.0 // indirect
24+
github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect
25+
github.com/google/go-cmp v0.3.1 // indirect
26+
github.com/google/go-github v17.0.0+incompatible
27+
github.com/google/go-github/v28 v28.1.1
28+
github.com/google/pprof v0.0.0-20191028172815-5e965273ee43 // indirect
29+
github.com/gorilla/websocket v1.4.1 // indirect
30+
github.com/gostaticanalysis/analysisutil v0.0.3 // indirect
31+
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 // indirect
32+
github.com/grpc-ecosystem/grpc-gateway v1.11.3 // indirect
33+
github.com/hashicorp/golang-lru v0.5.3 // indirect
34+
github.com/json-iterator/go v1.1.8 // indirect
35+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
36+
github.com/julienschmidt/httprouter v1.3.0 // indirect
37+
github.com/klauspost/compress v1.9.1 // indirect
38+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
39+
github.com/logrusorgru/aurora v0.0.0-20191017060258-dc85c304c434 // indirect
40+
github.com/mattn/go-isatty v0.0.10 // indirect
41+
github.com/mattn/goveralls v0.0.4 // indirect
42+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
43+
github.com/modern-go/reflect2 v1.0.1 // indirect
44+
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
45+
github.com/onsi/ginkgo v1.10.3 // indirect
46+
github.com/onsi/gomega v1.7.1 // indirect
47+
github.com/pelletier/go-toml v1.6.0 // indirect
48+
github.com/prometheus/client_golang v1.2.1 // indirect
49+
github.com/rogpeppe/fastuuid v1.2.0 // indirect
50+
github.com/rogpeppe/go-internal v1.5.0 // indirect
51+
github.com/russross/blackfriday v2.0.0+incompatible // indirect
52+
github.com/securego/gosec v0.0.0-20191031105617-99170e0d765b // indirect
53+
github.com/shirou/gopsutil v2.19.10+incompatible // indirect
54+
github.com/shurcooL/go v0.0.0-20190704215121-7189cc372560 // indirect
55+
github.com/spf13/afero v1.2.2 // indirect
56+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
57+
github.com/spf13/viper v1.5.0 // indirect
58+
github.com/ugorji/go v1.1.7 // indirect
59+
github.com/uudashr/gocognit v1.0.0 // indirect
60+
github.com/valyala/fasthttp v1.6.0 // indirect
61+
github.com/valyala/quicktemplate v1.4.1 // indirect
62+
go.etcd.io/bbolt v1.3.3 // indirect
63+
go.opencensus.io v0.22.1 // indirect
64+
go.uber.org/zap v1.12.0 // indirect
65+
golang.org/x/crypto v0.0.0-20191029031824-8986dd9e96cf // indirect
66+
golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136 // indirect
67+
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 // indirect
68+
golang.org/x/mobile v0.0.0-20191031020345-0945064e013a // indirect
69+
golang.org/x/net v0.0.0-20191101175033-0deb6923b6d9 // indirect
70+
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
71+
golang.org/x/sys v0.0.0-20191029155521-f43be2a4598c // indirect
72+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
73+
golang.org/x/tools v0.0.0-20191101200257-8dbcdeb83d3f // indirect
74+
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 // indirect
75+
google.golang.org/appengine v1.6.5 // indirect
76+
google.golang.org/grpc v1.24.0 // indirect
77+
mvdan.cc/unparam v0.0.0-20190917161559-b83a221c10a2 // indirect
78+
sourcegraph.com/sqs/pbtypes v1.0.0 // indirect
79+
)

0 commit comments

Comments
 (0)