Skip to content

Commit

Permalink
バイナリ作るように
Browse files Browse the repository at this point in the history
  • Loading branch information
Mushus committed Jun 7, 2018
1 parent 2aad93d commit b57c3be
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build
vendor
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,25 @@
# qiita-trends-rss
qiita trends rss feed
[Qiita](https://qiita.com/) trends RSS feed server

## install

```
go get github.com/Mushus/qiita-trends-rss
```

or

```
TODO:
```


## run

```
qiita-trends-rss -p 1234
```

```
curl http://localhost:1234/
```
12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.PHONY: dep, build

init:
go get -u github.com/golang/dep/cmd/dep
dep:
dep ensure
run:
go run ./...
build:
mkdir -p ./build
GOARCH=amd64 GOOS=linux GOARM=6 go build -o ./build/qiita-trends-rss-amd64-linux
GOARCH=arm GOOS=linux GOARM=6 go build -o ./build/qiita-trends-rss-arm-linux
File renamed without changes.

0 comments on commit b57c3be

Please sign in to comment.