Skip to content

Commit

Permalink
remove govendor on travis and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
wonderflow committed Nov 20, 2017
1 parent 92e0193 commit 0f0c832
Show file tree
Hide file tree
Showing 10 changed files with 575 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ hs_err_pid*
_obj
_test
bin/
!vendor/github.com/pkg
pkg/
tests
tests/meta_mock_csv
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ go:
- 1.8
- 1.9
script:
- go get -u github.com/kardianos/govendor
- make test
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
all:
govendor sync; go generate; CGO_ENABLED=1 go build -v -o logkit
go generate; CGO_ENABLED=1 go build -v -o logkit

install: all
@echo

test:
govendor sync; go generate; CGO_ENABLED=1 go test -race -cover ./...
go generate; CGO_ENABLED=1 go test -race -cover ./...

clean:
go clean -i ./...
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ logkit是[七牛Pandora](https://pandora-docs.qiniu.com)开发的一个通用的
1. MongoDB
1. Kafka
1. Redis
1. TCP/UDP/Unix Socket

## 工作方式

Expand Down Expand Up @@ -134,9 +135,6 @@ logkit.conf是logkit工具基础配置文件,主要用于指定logkit运行时
启动服务的命令中可以指定服务的启动配置

```
go get -u github.com/kardianos/govendor
govendor sync
go get ./...
go build -o logkit logkit.go
./logkit -f logkit.conf
```
Expand Down
20 changes: 9 additions & 11 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
# 1.3.X

1. 支持 kafka sender
2. 支持 http sender
3. logkit 统计信息持久化
4. 更多需要的Transformer
5. metric收集模块完善
6. 支持http reader
1. 支持 http sender
1. 更多需要的Transformer
1. metric收集模块完善
1. 支持http reader


# 1.4.X

1. 分布式logkit (raft)
2. 分布式监控所有logkit运行状态
3. 监控数据界面图表展示
4. 报警机制
5. 分布式部署logkit runner
6. 使用sqlite数据库管理 logkit meta 信息
1. 分布式监控所有logkit运行状态
1. 监控数据界面图表展示
1. 报警机制
1. 分布式部署logkit runner
1. 使用sqlite数据库管理 logkit meta 信息

# 1.5

Expand Down
23 changes: 23 additions & 0 deletions vendor/github.com/pkg/errors/LICENSE

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

52 changes: 52 additions & 0 deletions vendor/github.com/pkg/errors/README.md

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

32 changes: 32 additions & 0 deletions vendor/github.com/pkg/errors/appveyor.yml

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

Loading

0 comments on commit 0f0c832

Please sign in to comment.