mirror of https://github.com/shunfei/cronsun
parent
60b9437653
commit
194ae69c09
|
@ -1,7 +1,7 @@
|
|||
language: go
|
||||
go:
|
||||
- 1.7.5
|
||||
- 1.8.1
|
||||
- 1.7.6
|
||||
- 1.8.3
|
||||
install:
|
||||
- go get github.com/coreos/etcd/clientv3
|
||||
- go get github.com/coreos/etcd/mvcc/mvccpb
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
# cronsun [![Build Status](https://travis-ci.org/shunfei/cronsun.svg?branch=master)](https://travis-ci.org/shunfei/cronsun)
|
||||
|
||||
*Note: The UI is in Chinese, English may be in the future.*
|
||||
|
||||
`cronsun` is a distributed cron-style job system. It's similar with `crontab` on stand-alone `*nix`.
|
||||
|
||||
[简体中文](README_ZH.md)
|
||||
|
@ -16,6 +14,7 @@ The goal of this project is to make it much easier to manage jobs on lots of mac
|
|||
- Easy manage jobs on multiple machines
|
||||
- Managemant panel
|
||||
- Mail service
|
||||
- Multi-language support
|
||||
|
||||
## Architecture
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"runtime"
|
||||
)
|
||||
|
||||
const Binary = "v0.1.0"
|
||||
const Binary = "v0.1.1"
|
||||
|
||||
var (
|
||||
Version = fmt.Sprintf("%s (build %s)", Binary, runtime.Version())
|
||||
|
|
Loading…
Reference in New Issue